NiceSelect<T> constructor
- Key? key,
- required List<
NiceSelectItem< items,T> > - T? value,
- String? label,
- String? hint,
- String? errorText,
- bool enabled = true,
- ValueChanged<
T?> ? onChanged, - Widget itemBuilder()?,
Implementation
const NiceSelect({
super.key,
required this.items,
this.value,
this.label,
this.hint,
this.errorText,
this.enabled = true,
this.onChanged,
this.itemBuilder,
});