EntrancePageTransition constructor

const EntrancePageTransition({
  1. Key? key,
  2. required Widget child,
  3. required Animation<double> animation,
  4. bool vertical = true,
  5. bool reverse = false,
})

Creates an entrance page transition

Implementation

const EntrancePageTransition({
  Key? key,
  required this.child,
  required this.animation,
  this.vertical = true,
  this.reverse = false,
}) : super(key: key);