removeClusteredMarkers method
Remove clustered markers from the map
Implementation
Future<void> removeClusteredMarkers(String clusterId) async {
try {
await _channel.invokeMethod('removeClusteredMarkers', {'clusterId': clusterId});
} catch (e) {
debugPrint('Error removing clustered markers: $e');
}
}