FlexExitTransition constructor

const FlexExitTransition({
  1. Key? key,
  2. required Animation<double> mainAxisExtent,
  3. required Axis direction,
  4. required bool startToEnd,
  5. required double initialExtentRatio,
  6. required List<Widget> children,
})

Implementation

const FlexExitTransition({
  super.key,
  required this.mainAxisExtent,
  required this.direction,
  required this.startToEnd,
  required this.initialExtentRatio,
  required super.children,
});