scrollBy method

void scrollBy(
  1. double x,
  2. double y
)

Implementation

void scrollBy(double x, double y) {
  document.documentElement!
    ..flushLayout()
    ..scrollBy(x, y);
}