FAccordionManagedControl constructor

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

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._();