POIsListSheet constructor
- Key? key,
- required DraggableScrollableController controller,
- required List<
PointOfInterestWithInfo> poisToDisplay, - required dynamic onPOISelected(),
- bool isOfflineMode = false,
- bool isDraggable = true,
- double size = minScrollSize,
- 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,
});