isMarkerInfoWindowShown method

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

Returns true if the InfoWindow of the Marker identified by markerId is shown.

See also:

Implementation

@override
Future<bool> isMarkerInfoWindowShown(
  MarkerId markerId, {
  required int mapId,
}) async {
  return _map(mapId).isInfoWindowShown(markerId);
}