void dispatchOnScroll()

Calls the onScroll callback.

Subclasses can override this method to hook the scroll callback.

Source

void dispatchOnScroll() {
  assert(_numberOfInProgressScrolls > 0);
  if (config.onScroll != null)
    config.onScroll(_scrollOffset);
}