deleteLines method
Deletes the selected lines, or the current line if there is no selection.
Implementation
bool deleteLines() {
final changed = _model.deleteLines();
if (changed) {
notifyListeners();
}
return changed;
}
Deletes the selected lines, or the current line if there is no selection.
bool deleteLines() {
final changed = _model.deleteLines();
if (changed) {
notifyListeners();
}
return changed;
}