backInUp method

Widget backInUp({
  1. Key? key,
  2. Duration duration = _defaultDuration,
  3. Duration delay = Duration.zero,
  4. Curve curve = _defaultCurve,
  5. bool animate = true,
  6. bool manualTrigger = false,
  7. AnimateDoControllerCallback? controller,
  8. AnimateDoFinishCallback? onFinish,
  9. double from = _defaultFrom,
})

Implementation

Widget backInUp({
  Key? key,
  Duration duration = _defaultDuration,
  Duration delay = Duration.zero,
  Curve curve = _defaultCurve,
  bool animate = true,
  bool manualTrigger = false,
  AnimateDoControllerCallback? controller,
  AnimateDoFinishCallback? onFinish,
  double from = _defaultFrom,
}) {
  return BackInUp(
    key: key,
    duration: duration,
    delay: delay,
    curve: curve,
    animate: animate,
    manualTrigger: manualTrigger,
    controller: controller,
    onFinish: onFinish,
    from: from,
    child: this,
  );
}