POIsListSheet constructor

const POIsListSheet({
  1. Key? key,
  2. required DraggableScrollableController controller,
  3. required List<PointOfInterestWithInfo> poisToDisplay,
  4. required dynamic onPOISelected(
    1. PointOfInterest
    ),
  5. bool isOfflineMode = false,
  6. bool isDraggable = true,
  7. double size = minScrollSize,
  8. BorderRadius? borderRadius,
})

Implementation

const POIsListSheet({
  super.key,
  required this.controller,
  required this.poisToDisplay,
  required this.onPOISelected,
  this.isOfflineMode = false,
  this.isDraggable = true,
  this.size = minScrollSize,
  this.borderRadius,
  // required this.searchFocusNode,
});