ArcaneCombobox<T> constructor
const
ArcaneCombobox<T> ({
- required List<
ComboboxOption< options,T> > - T? value,
- void onChanged(
- T?
- String? placeholder,
- String? searchPlaceholder,
- bool searchable = true,
- String displayValue(
- T
- bool filterFn(
- ComboboxOption<
T> , - String
- ComboboxOption<
- String emptyMessage = 'No results found',
- bool disabled = false,
- String? error,
- String? label,
- ComboboxSize size = ComboboxSize.md,
- Key? key,
Implementation
const ArcaneCombobox({
required this.options,
this.value,
this.onChanged,
this.placeholder,
this.searchPlaceholder,
this.searchable = true,
this.displayValue,
this.filterFn,
this.emptyMessage = 'No results found',
this.disabled = false,
this.error,
this.label,
this.size = ComboboxSize.md,
super.key,
});