hideMarkerInfoWindow method

  1. @override
Future<void> hideMarkerInfoWindow(
  1. MarkerId markerId, {
  2. required int mapId,
})

Hides the InfoWindow (if any) of the Marker identified by markerId.

See also:

Implementation

@override
Future<void> hideMarkerInfoWindow(
  MarkerId markerId, {
  required int mapId,
}) async {
  _map(mapId).hideInfoWindow(markerId);
}