CHFExpandableContainerWidget constructor

const CHFExpandableContainerWidget({
  1. Key? key,
  2. ValueChanged<bool>? onExpansionChanged,
  3. Widget headerBuilder(
    1. BuildContext context
    )?,
  4. required Widget child,
  5. bool initiallyExpanded = false,
  6. Duration? animationDuration,
  7. CHFExpandableContainerController? expandableController,
})

Implementation

const CHFExpandableContainerWidget({
  Key? key,
  this.onExpansionChanged,
  this.headerBuilder,
  required this.child,
  this.initiallyExpanded = false,
  this.animationDuration,
  this.expandableController,
}) : super(key: key);