onScrollUpdate method

bool onScrollUpdate(
  1. ScrollUpdateNotification notification
)

Implementation

bool onScrollUpdate(ScrollUpdateNotification notification) {
  if (shouldLoad(notification)) {
    load();
  }
  return true;
}