clearFills method
Removes all fill from the map.
Change listeners are notified once all fills have been removed on the platform side.
The returned Future completes once listeners have been notified.
Implementation
Future<void> clearFills() async {
if (_disposed) {
return;
}
await fillManager!.clear();
if (_disposed) {
return;
}
notifyListeners();
}