removeAllPolygons method

  1. @override
Future<bool?> removeAllPolygons()
override

Remove all polygons from the map.

Implementation

@override
Future<bool?> removeAllPolygons() async {
  return await methodChannel.invokeMethod<bool>(
    Events.removeAllPolygons,
  );
}