void dispatchOnScrollStart()

Calls the onScrollStart callback.

Subclasses can override this method to hook the scroll start callback.

Source

void dispatchOnScrollStart() {
  assert(_numberOfInProgressScrolls == 1);
  if (config.onScrollStart != null)
    config.onScrollStart(_scrollOffset);
}