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