slide method
Implementation
Widget slide({
Offset offset = const Offset(0, 0.1),
Duration duration = const Duration(milliseconds: 1000),
Curve curve = Curves.easeInOut,
}) => AnimatedSlide(
offset: offset,
duration: duration,
curve: curve,
child: this,
);