SelectPopup<T> constructor
const
SelectPopup<T> ({
- Key? key,
- FutureOr<
SelectItemDelegate?> ? items, - TextEditingController? searchController,
- Widget? searchPlaceholder,
- WidgetBuilder? emptyBuilder,
- WidgetBuilder? loadingBuilder,
- ErrorWidgetBuilder? errorBuilder,
- double? surfaceBlur,
- double? surfaceOpacity,
- bool? autoClose,
- bool? canUnselect,
- ScrollController? scrollController,
- bool shrinkWrap = true,
Implementation
const SelectPopup({
super.key,
this.items,
this.searchController,
this.searchPlaceholder,
this.emptyBuilder,
this.loadingBuilder,
this.errorBuilder,
this.surfaceBlur,
this.surfaceOpacity,
this.autoClose,
this.canUnselect,
this.scrollController,
this.shrinkWrap = true,
}) : builder = null,
enableSearch = false,
disableVirtualization = false;