SelectPopup<T> constructor
const
SelectPopup<T> ({
- Key? key,
- required ValueListenable<
List< value,T> > - SearchFilter<
T> ? searchFilter, - BoxConstraints? constraints,
- SelectValueChanged<
T> ? onChanged, - String? searchPlaceholder,
- WidgetBuilder? emptyBuilder,
- bool orderSelectedFirst = true,
- double? surfaceBlur,
- double? surfaceOpacity,
- bool autoClose = true,
- required List<
AbstractSelectItem< children,T> >
Implementation
const SelectPopup({
super.key,
required this.value,
this.searchFilter,
this.constraints,
this.showUnrelatedValues = false,
this.onChanged,
this.searchPlaceholder,
this.emptyBuilder,
this.orderSelectedFirst = true,
this.surfaceBlur,
this.surfaceOpacity,
this.autoClose = true,
required this.children,
});