SlideTransitionAnimation constructor

const SlideTransitionAnimation({
  1. Key? key,
  2. required Widget child,
  3. required Duration duration,
  4. double beginx = 0.5,
  5. double beginy = 0,
  6. double endx = 0,
  7. double endy = 0,
})

Implementation

const SlideTransitionAnimation(
    {super.key,
    required this.child,
    required this.duration,
    this.beginx = 0.5,
    this.beginy = 0,
    this.endx = 0,
    this.endy = 0});