updateUserScrollDirection method
- ScrollDirection value
Set userScrollDirection to the given value.
If this changes the value, then a UserScrollNotification is dispatched.
Implementation
@protected
@visibleForTesting
void updateUserScrollDirection(ScrollDirection value) {
if (userScrollDirection == value) {
return;
}
_userScrollDirection = value;
didUpdateScrollDirection(value);
}