clearFills method
Removes all fills from the map added with the addFill or addFills methods.
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 {
await fillManager!.clear();
notifyListeners();
}