scrollWithDelta method

  1. @override
void scrollWithDelta(
  1. int delta
)
inherited

Scrolls the scrollbar with the given delta.

Calling this may cause reflow, and should be done only in a batched domWrite block or DomService's updateLayout callbacks.

Implementation

@override
void scrollWithDelta(int delta) {
  scrollToPosition(scrollPosition + delta);
}