moveSelectionsByPage method

bool moveSelectionsByPage({
  1. required bool below,
})

Moves every active cursor by one viewport page.

Implementation

bool moveSelectionsByPage({required bool below}) {
  return _applyVerticalMappedEnds(below: below, rows: _pageRowCount);
}