outdentLines method
Outdents the selected lines, or the current line if there is no selection.
Implementation
bool outdentLines({int width = 2}) {
final changed = _model.outdentLines(width: width);
if (changed) {
notifyListeners();
}
return changed;
}