updateCircles method
Update circles to the map view.
Throws CircleNotFoundException if the circles
list contains one or
more circles that have not been added to the map view via addCircles or
contains circles that have already been removed from the map view.
Implementation
Future<List<Circle?>> updateCircles(List<Circle> circles) async {
return GoogleMapsNavigationPlatform.instance
.updateCircles(viewId: _viewId, circles: circles);
}