scrollUp property

bool get scrollUp

Scrolling up

Implementation

bool get scrollUp {
  if (state == null) {
    return false;
  }
  return state!.offset < state!.lastOffset;
}