ZetaAccordion constructor

const ZetaAccordion(
  1. {Key? key,
  2. required String title,
  3. Widget? child,
  4. bool rounded = true,
  5. bool contained = false,
  6. bool isOpen = false}
)

The constructor of the component ZetaAccordion.

Implementation

const ZetaAccordion({
  super.key,
  required this.title,
  this.child,
  this.rounded = true,
  this.contained = false,
  this.isOpen = false,
});