fast static method
ScrollBehaviorConfig
fast({
- AutoScrollBehavior autoScrollBehavior = AutoScrollBehavior.onNewMessage,
- bool scrollToFirstResponseMessage = false,
Creates a fast scrolling configuration with minimal animation For situations where you want quick, direct scrolling
Implementation
static ScrollBehaviorConfig fast({
AutoScrollBehavior autoScrollBehavior = AutoScrollBehavior.onNewMessage,
bool scrollToFirstResponseMessage = false,
}) {
return ScrollBehaviorConfig(
autoScrollBehavior: autoScrollBehavior,
scrollToFirstResponseMessage: scrollToFirstResponseMessage,
scrollAnimationDuration: const Duration(milliseconds: 150),
scrollAnimationCurve: Curves.easeOutQuart,
);
}