hideInfoWindow method

Future<void> hideInfoWindow(
  1. String markerId
)

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');
  }
}