CustomMultiSelect<T> constructor
const
CustomMultiSelect<T> ({
- Key? key,
- required List<
SelectOption< options,T> > - Set<
T> initialSelected = const {}, - ValueChanged<
Set< ? onChange,T> > - VoidCallback? onCancel,
- VoidCallback? onConfirm,
- String? tag,
Implementation
const CustomMultiSelect({
super.key,
required this.options,
this.initialSelected = const {},
this.onChange,
this.onCancel,
this.onConfirm,
this.tag,
});