halfPageDown method

ViewportModel halfPageDown()

Moves down by half a page.

Implementation

ViewportModel halfPageDown() {
  if (atBottom || height == null) return this;
  return scrollDown(height! ~/ 2);
}