CustomExpandCollapseWidget constructor

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

Implementation

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