showMarkerInfoWindow method

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

Shows the InfoWindow (if any) of the Marker identified by markerId.

See also:

Implementation

@override
Future<void> showMarkerInfoWindow(
  MarkerId markerId, {
  required int mapId,
}) async {
  _map(mapId).showInfoWindow(markerId);
}