halfPageDown method
Moves down by half a page.
Implementation
ViewportModel halfPageDown() {
if (atBottom || height == null) return this;
return scrollDown(height! ~/ 2);
}
Moves down by half a page.
ViewportModel halfPageDown() {
if (atBottom || height == null) return this;
return scrollDown(height! ~/ 2);
}