ExpandedSection constructor

const ExpandedSection({
  1. Key? key,
  2. bool expand = false,
  3. required Widget child,
  4. Function? onFinish,
  5. Duration? duration,
  6. Axis axis = Axis.vertical,
  7. bool reverse = false,
})

Implementation

const ExpandedSection({
  super.key,
  this.expand = false,
  required this.child,
  this.onFinish,
  this.duration,
  this.axis = Axis.vertical,
  this.reverse = false,
});