ExpandableGroup constructor

ExpandableGroup({
  1. Key? key,
  2. bool isExpanded = false,
  3. required Widget header,
  4. required List<ListTile> items,
  5. Widget? expandedIcon,
  6. Widget? collapsedIcon,
  7. EdgeInsets? headerEdgeInsets,
  8. Color? headerBackgroundColor,
})

Implementation

ExpandableGroup({Key? key,
  this.isExpanded = false,
  required this.header,
  required this.items,
  this.expandedIcon,
  this.collapsedIcon,
  this.headerEdgeInsets,
  this.headerBackgroundColor})
    : super(key: key);