CustomMultiSelect<T> constructor

const CustomMultiSelect<T>({
  1. Key? key,
  2. required List<SelectOption<T>> options,
  3. Set<T> initialSelected = const {},
  4. ValueChanged<Set<T>>? onChange,
  5. VoidCallback? onCancel,
  6. VoidCallback? onConfirm,
  7. String? tag,
})

Implementation

const CustomMultiSelect({
  super.key,
  required this.options,
  this.initialSelected = const {},
  this.onChange,
  this.onCancel,
  this.onConfirm,
  this.tag,
});