lowercaseSelectionOrLine method
Lowercases the selected range, or the current line when there is no selection.
Implementation
bool lowercaseSelectionOrLine() {
return _transformSelectionOrLineShared((text) => text.toLowerCase());
}
Lowercases the selected range, or the current line when there is no selection.
bool lowercaseSelectionOrLine() {
return _transformSelectionOrLineShared((text) => text.toLowerCase());
}