slideUp method

Widget slideUp({
  1. Duration duration = const Duration(milliseconds: 300),
  2. Curve curve = Curves.easeOut,
  3. Offset? beginOffset,
})

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