NiceMultiColumnComboBox<T> constructor
- Key? key,
- required List<
T> items, - required List<
NiceComboColumn< columns,T> > - required String displayBuilder(
- T item
- T? value,
- ValueChanged<
T> ? onChanged, - String? label,
- String placeholder = 'Select...',
- bool searchable = true,
Implementation
const NiceMultiColumnComboBox({
super.key,
required this.items,
required this.columns,
required this.displayBuilder,
this.value,
this.onChanged,
this.label,
this.placeholder = 'Select...',
this.searchable = true,
});