Calls the dispatchOnScrollEnd callback.
Subclasses can override this method to hook the scroll end callback.
Source
void dispatchOnScrollEnd() {
assert(_numberOfInProgressScrolls == 0);
if (config.onScrollEnd != null)
config.onScrollEnd(_scrollOffset);
}