onPolylineEdited method

Stream<PolylineEditEvent> onPolylineEdited({
  1. required int mapId,
})
inherited

A Polyline path has been edited by the user.

Polyline editing is currently only supported on web; platforms that do not support it return an empty stream by default rather than throwing, so the app-facing package can subscribe unconditionally on every platform.

Implementation

Stream<PolylineEditEvent> onPolylineEdited({required int mapId}) {
  return const Stream<PolylineEditEvent>.empty();
}