longTapStream property

Stream<TapEvent?> get longTapStream

A stream which triggers an event if the user long taps at the map. Sending a null value down the stream means that the listener is not entitled to handle the event anymore. This is currently being used to hide the context menu.

Implementation

Stream<TapEvent?> get longTapStream => _longTapSubject.stream;