scrollBy method

void scrollBy(
  1. double x,
  2. double y, [
  3. bool withAnimation = false
])

Implementation

void scrollBy(double x, double y, [bool withAnimation = false]) {
  _scrollBy(dx: x, dy: y, withAnimation: withAnimation);
}