halfPageUp method
Moves up by half a page.
Implementation
ViewportModel halfPageUp() {
if (atTop || height == null) return this;
return scrollUp(height! ~/ 2);
}
Moves up by half a page.
ViewportModel halfPageUp() {
if (atTop || height == null) return this;
return scrollUp(height! ~/ 2);
}