hideMarkerInfoWindow method

void hideMarkerInfoWindow(
  1. MarkerId markerId
)

Hides the InfoWindow of a MarkerId.

See also showMarkerInfoWindow and isInfoWindowShown.

Implementation

void hideMarkerInfoWindow(MarkerId markerId) {
  final MarkerController? markerController = _markerIdToController[markerId];
  markerController?.hideInfoWindow();
}