ZetaAccordion constructor

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

The constructor of the component ZetaAccordion.

Implementation

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