MephistoAccordion constructor

MephistoAccordion({
  1. Key? key,
  2. required bool isOpen,
  3. required String title,
  4. required List<Widget> items,
  5. String? description,
  6. double? height = 56,
  7. bool? isDefaultOpen = false,
  8. bool? defaultPadding = true,
  9. bool? defaultYPadding = false,
  10. Widget? headerIcon,
  11. Function? onItemClicked,
})

Implementation

MephistoAccordion(
    {super.key,
    required this.isOpen,
    required this.title,
    required this.items,
    this.description,
    this.height = 56,
    this.isDefaultOpen = false,
    this.defaultPadding = true,
    this.defaultYPadding = false,
    this.headerIcon,
    this.onItemClicked});