POIsListSheet constructor
const
POIsListSheet({ - Key? key,
- required DraggableScrollableController controller,
- required List<PointOfInterestWithInfo> poisToDisplay,
- required dynamic onPOISelected(
- PointOfInterest
),
- bool isOfflineMode = false,
- bool isDraggable = true,
- double size = minScrollSize,
- BorderRadius? borderRadius,
- bool isLoading = false,
- String? tagCategory,
- List<Tag>? tags,
})
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,
this.isLoading = false,
this.tagCategory,
this.tags,
// required this.searchFocusNode,
});