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