pageDown method
Moves down by one page.
Implementation
ViewportModel pageDown() {
if (atBottom || height == null) return this;
return scrollDown(height!);
}
Moves down by one page.
ViewportModel pageDown() {
if (atBottom || height == null) return this;
return scrollDown(height!);
}