MultiSelectController<T> constructor

MultiSelectController<T>({
  1. required List<SelectOption<T>> options,
  2. Set<T> initialSelected = const {},
  3. ValueChanged<Set<T>>? onChange,
  4. VoidCallback? onCancel,
})

Implementation

MultiSelectController({
  required this.options,
  this.initialSelected = const {},
  this.onChange,
  this.onCancel,
});