NiceTreeSelect<T> constructor
- Key? key,
- required List<
NiceTreeSelectNode< nodes,T> > - List<
T> selectedValues = const [], - ValueChanged<
List< ? onChanged,T> > - String? label,
- String placeholder = 'Select...',
- bool multiSelect = true,
- bool searchable = true,
Implementation
const NiceTreeSelect({
super.key,
required this.nodes,
this.selectedValues = const [],
this.onChanged,
this.label,
this.placeholder = 'Select...',
this.multiSelect = true,
this.searchable = true,
});