removePolygon method
Removes the specified fill
from the map. The fill must be a current
member of the fills set.
Change listeners are notified once the fill has been removed on the platform side.
The returned Future completes once listeners have been notified.
Implementation
Future<void> removePolygon(Polygon fill) async {
await polygonManager!.remove(fill);
notifyListeners();
}