onPolylineTap method

  1. @override
Stream<PolylineTapEvent> onPolylineTap({
  1. required int mapId,
})
override

A Polyline has been tapped.

Implementation

@override
Stream<PolylineTapEvent> onPolylineTap({required int mapId}) {
  return _events(mapId).whereType<PolylineTapEvent>();
}