SimpleAccordion constructor

const SimpleAccordion({
  1. Key? key,
  2. required List<AccordionHeaderItem> children,
  3. Color? headerColor,
  4. Color? itemColor,
  5. int? maxSelectCount,
  6. TextStyle? headerTextStyle,
  7. TextStyle? itemTextStyle,
  8. List<AccordionData>? selectedItems,
  9. dynamic onSelectedChanged(
    1. List<AccordionData>
    )?,
})

Implementation

const SimpleAccordion(
    {Key? key,
    required this.children,
    this.headerColor,
    this.itemColor,
    this.maxSelectCount,
    this.headerTextStyle,
    this.itemTextStyle,
    this.selectedItems,
    this.onSelectedChanged})
    : super(key: key);