lowercaseSelectionOrLine method

bool lowercaseSelectionOrLine()

Lowercases the selected range, or the current line when there is no selection.

Implementation

bool lowercaseSelectionOrLine() {
  return _transformSelectionOrLineShared((text) => text.toLowerCase());
}