FAccordionManagedControl constructor
const
FAccordionManagedControl({
- FAccordionController? controller,
- int? min,
- int? max,
- ValueChanged<
Set< ? onChange,int> >
Creates a FAccordionControl.
Implementation
const FAccordionManagedControl({this.controller, this.min, this.max, this.onChange})
: assert(
controller == null || (min == null && max == null),
'Cannot provide both controller and min/max constraints. Pass min/max to the controller instead.',
),
super._();