CustomExpandCollapseWidget constructor

const CustomExpandCollapseWidget({
  1. Key? key,
  2. required Widget header,
  3. required Widget child,
  4. bool? isExpanded,
  5. VoidCallback? onToggle,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? margin,
})

Implementation

const CustomExpandCollapseWidget({
  super.key,
  required this.header,
  required this.child,
  this.isExpanded,
  this.onToggle,
  this.width,
  this.height,
  this.margin,
});