extendSelectionsByPage method

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

Extends every selection's active edge by one viewport page.

Implementation

bool extendSelectionsByPage({required bool below}) {
  return _applyVerticalMappedEnds(
    below: below,
    extend: true,
    rows: _pageRowCount,
  );
}