hideInfoWindow method

void hideInfoWindow()

Hide the associated gmaps.InfoWindow.

This cannot be called after remove.

Implementation

void hideInfoWindow() {
  assert(_marker != null, 'Cannot `hideInfoWindow` on a `remove`d Marker.');
  if (_infoWindow != null) {
    _infoWindow.close();
    _infoWindowShown = false;
  }
}