slideUp method
Slides the widget up.
Implementation
Widget slideUp({
Duration duration = const Duration(milliseconds: 300),
Curve curve = Curves.easeOut,
Offset? beginOffset,
}) {
return _animate(
type: .slideUp,
duration: duration,
curve: curve,
beginOffset: beginOffset ?? const Offset(0, 12),
child: this,
);
}