isInfoWindowShown method

bool isInfoWindowShown(
  1. MarkerId markerId
)

Returns true if the InfoWindow of the marker identified by MarkerId is shown.

Implementation

bool isInfoWindowShown(MarkerId markerId) {
  return _markersController?.isInfoWindowShown(markerId) ?? false;
}