updateMarkers method

Future<void> updateMarkers(
  1. MarkerUpdates markerUpdates,
  2. {required int mapId}
)

Updates marker configuration.

Change listeners are notified once the update has been made on the platform side.

The returned Future completes after listeners have been notified.

Implementation

Future<void> updateMarkers(
  MarkerUpdates markerUpdates, {
  required int mapId,
}) {
  throw UnimplementedError('updateMarkers() has not been implemented.');
}