scrollToMinimum method
Implementation
Future<void> scrollToMinimum({
Duration duration = Durations.short4,
Curve curve = Curves.easeOut,
}) async {
await animateTo(
position.maxScrollExtent,
duration: duration,
curve: curve,
);
}