FastSearchSelect<T> constructor
const
FastSearchSelect<T> ({
- Key? key,
- bool showClearButton = true,
- String searchTitle = 'Search',
- Future<
List< onSearch()?,T> > - String? hint,
- List<
T> ? initialValue, - bool alowMultiple = true,
- double radius = 8,
- void onChanged(
- List<
T> ?
- List<
- int? max,
- String? validation(
- List<
T>
- List<
- Widget itemBuilder(
- T
- required List<
T> items,
Implementation
const FastSearchSelect({
super.key,
this.showClearButton = true,
this.searchTitle = 'Search',
this.onSearch,
this.hint,
this.initialValue,
this.alowMultiple = true,
this.radius = 8,
this.onChanged,
this.max,
this.validation,
this.itemBuilder,
required this.items,
});