MultiSelectionDropdownWidget constructor
const
MultiSelectionDropdownWidget({
- Key? key,
- required FutureOr<
List< data,DropDownModel> > - required ValueNotifier<
List< listener,DropDownModel> > - required String label,
- required ValueChanged<
List< ? onSelected,DropDownModel> > - String? validator(
- List<
DropDownModel> ?
- List<
- bool showSearchBox = false,
- int maxOptions = 10,
- bool enabled = true,
Implementation
const MultiSelectionDropdownWidget({
super.key,
required this.data,
required this.listener,
required this.label,
required this.onSelected,
this.validator,
this.showSearchBox = false,
this.maxOptions = 10,
this.enabled = true,
});