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