extendSelectionsVertically method

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

Extends every selection's end up or down by one visible line.

Implementation

bool extendSelectionsVertically({required bool below}) {
  _refreshDocumentSnapshot();
  return _applyVerticalMappedEnds(below: below, extend: true);
}