moveLinesUp method
Moves the selected lines, or the current line, one row upward.
Implementation
bool moveLinesUp() {
final changed = _model.moveLinesUp();
if (changed) {
notifyListeners();
}
return changed;
}
Moves the selected lines, or the current line, one row upward.
bool moveLinesUp() {
final changed = _model.moveLinesUp();
if (changed) {
notifyListeners();
}
return changed;
}