removeCircle method
Remove a circle from the map
Implementation
Future<void> removeCircle(String circleId) async {
try {
await _channel.invokeMethod('removeCircle', {'circleId': circleId});
} catch (e) {
debugPrint('Error removing circle: $e');
}
}