FMultiValueManagedControl<T> constructor
const
FMultiValueManagedControl<T> ({
- FMultiValueNotifier<
T> ? controller, - int? min,
- int? max,
- ValueChanged<
Set< ? onChange,T> >
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._();