PopupLayer constructor

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

Implementation

const PopupLayer({
  required this.mapState,
  required this.popupState,
  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);