VoyagerMarkerProtocol constructor

VoyagerMarkerProtocol({
  1. required VoyagerMapController mapController,
  2. required VoidCallback updateInfoWindow,
})

Implementation

VoyagerMarkerProtocol({
  required super.mapController,
  required this.updateInfoWindow,
}) {
  mapController.getInfoWindowMarkerNotifier().addListener(updateInfoWindow);
}