showMarkerInfoWindow method

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

Programmatically show the Info Window for a Marker.

The markerId must match one of the markers on the map. An invalid markerId triggers an "Invalid markerId" error.

Implementation

Future<void> showMarkerInfoWindow(
  MarkerId markerId, {
  required int mapId,
}) {
  throw UnimplementedError(
      'showMarkerInfoWindow() has not been implemented.');
}