animatedSlide method

Widget animatedSlide({
  1. double start = 0,
  2. double end = 1,
  3. Curve? curve,
  4. Duration? duration,
})

Implementation

Widget animatedSlide({
  double start = 0,
  double end = 1,
  Curve? curve,
  Duration? duration,
}) =>
    _GrockSlideAnimation(
      child: this,
      to: end,
      from: start,
      duration: duration,
      curve: curve,
    );