AnimatedSection constructor

const AnimatedSection({
  1. Key? key,
  2. bool expand = false,
  3. required VoidCallback animationDismissed,
  4. required Widget child,
  5. required double axisAlignment,
})

Implementation

const AnimatedSection({
  super.key,
  this.expand = false,
  required this.animationDismissed,
  required this.child,
  required this.axisAlignment,
});