FMultiValueControl<T>.managed constructor

const FMultiValueControl<T>.managed({
  1. FMultiValueNotifier<T>? controller,
  2. Set<T>? initial,
  3. int min,
  4. int? max,
  5. ValueChanged<Set<T>>? onChange,
})

Creates a FMultiValueControl for multiple value selection.

Implementation

const factory FMultiValueControl.managed({
  FMultiValueNotifier<T>? controller,
  Set<T>? initial,
  int min,
  int? max,
  ValueChanged<Set<T>>? onChange,
}) = _Normal<T>;