showInfoWindow method
void
showInfoWindow(
- MarkerId markerId
Shows the InfoWindow of the marker identified by its MarkerId.
Implementation
void showInfoWindow(MarkerId markerId) {
assert(
_markersController != null,
'Cannot show infowindow of marker [${markerId.value}] after dispose().',
);
_markersController?.showMarkerInfoWindow(markerId);
}