moveLinesUp method

bool moveLinesUp()

Moves the selected lines, or the current line, one row upward.

Implementation

bool moveLinesUp() {
  final changed = _model.moveLinesUp();
  if (changed) {
    notifyListeners();
  }
  return changed;
}