hideInfoWindow method
Hide the info window for a marker
Implementation
Future<void> hideInfoWindow(String markerId) async {
try {
await _channel.invokeMethod('hideInfoWindow', {'markerId': markerId});
} catch (e) {
debugPrint('Error hiding info window: $e');
}
}