startAutoScroll method

void startAutoScroll(
  1. double jumpPos
)
inherited

Start scrolling child-view that related scrollController. It will stop then call stopAutoScroll

Implementation

void startAutoScroll(double jumpPos) {
  if(_autoScrollSignal) return;
  _autoScrollSignal = true;
  _launchAutoScroll(jumpPos);
}