SimpleAccordion constructor
const
SimpleAccordion({
- Key? key,
- required List<
AccordionHeaderItem> children, - Color? headerColor,
- Color? itemColor,
- int? maxSelectCount,
- TextStyle? headerTextStyle,
- TextStyle? itemTextStyle,
- List<
AccordionData> ? selectedItems, - dynamic onSelectedChanged()?,
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);