lowercaseSelectionOrLine method
Lowercases the selected range, or the current line when there is no selection.
Implementation
bool lowercaseSelectionOrLine() {
final changed = _model.lowercaseSelectionOrLine();
if (changed) {
notifyListeners();
}
return changed;
}