updatePolygons method

  1. @override
Future<void> updatePolygons(
  1. PolygonUpdates polygonUpdates, {
  2. required int mapId,
})

Applies the passed in polygonUpdates to the mapId.

Implementation

@override
Future<void> updatePolygons(
  PolygonUpdates polygonUpdates, {
  required int mapId,
}) async {
  _map(mapId).updatePolygons(polygonUpdates);
}