FMultiValueManagedControl<T> constructor

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

Creates a FMultiValueControl.

Implementation

const FMultiValueManagedControl({this.controller, this.min, this.max, this.onChange})
  : assert(controller == null || min == null, 'Cannot provide both controller and min. Pass min to the controller.'),
    assert(controller == null || max == null, 'Cannot provide both controller and max. Pass max to the controller.'),
    super._();