ZetaAccordion constructor

const ZetaAccordion({
  1. Key? key,
  2. bool? rounded,
  3. List<ZetaAccordionItem>? children,
  4. bool inCard = false,
  5. bool expandMultiple = false,
  6. bool selectMultiple = false,
})

The constructor of the component ZetaAccordion.

Implementation

const ZetaAccordion({
  super.key,
  super.rounded,
  this.children,
  this.inCard = false,
  this.expandMultiple = false,
  this.selectMultiple = false,
});