backInUp method
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,
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,
);
}