showInfoWindow method

void showInfoWindow()

Show the associated gmaps.InfoWindow.

This cannot be called after remove.

Implementation

void showInfoWindow() {
  assert(_marker != null, 'Cannot `showInfoWindow` on a `remove`d Marker.');
  if (_infoWindow != null) {
    _infoWindow!.open(_marker!.map, _marker);
    _infoWindowShown = true;
  }
}