clearCircles method
Removes all circles from the map added with the addCircle or addCircles methods.
Change listeners are notified once all circles have been removed on the platform side.
The returned Future completes once listeners have been notified.
Implementation
Future<void> clearCircles() async {
circleManager!.clear();
notifyListeners();
}