ExpandAnimationView constructor

ExpandAnimationView({
  1. Key? key,
  2. required Widget titleView,
  3. required Widget contentView,
  4. Widget? iconView,
  5. double? axisAlignment,
  6. EdgeInsets? margin,
  7. bool? isExpand,
  8. EdgeInsets? padding,
  9. BoxDecoration? decoration,
  10. EdgeInsets? titleMargin,
  11. EdgeInsets? titlePadding,
  12. BoxDecoration? titleDecoration,
})

Implementation

ExpandAnimationView({
  super.key,
  required this.titleView,
  required this.contentView,
  this.iconView,
  this.axisAlignment,
  this.margin,
  this.isExpand,
  this.padding,
  this.decoration,
  this.titleMargin,
  this.titlePadding,
  this.titleDecoration,
});