PopupLayer constructor

const PopupLayer({
  1. required MapState mapState,
  2. Stream<void>? stream,
  3. required PopupBuilder popupBuilder,
  4. required PopupSnap popupSnap,
  5. required PopupController popupController,
  6. PopupAnimation? popupAnimation,
  7. required bool markerRotate,
  8. dynamic onPopupEvent(
    1. PopupEvent event,
    2. List<Marker> selectedMarkers
    )?,
  9. Key? key,
})

Implementation

const PopupLayer({
  required this.mapState,
  this.stream,
  required this.popupBuilder,
  required this.popupSnap,
  required PopupController popupController,
  this.popupAnimation,
  required this.markerRotate,
  this.onPopupEvent,
  Key? key,
})  : popupController = popupController as PopupControllerImpl,
      super(key: key);