uppercaseWordForward method

bool uppercaseWordForward()

Uppercases the word at or after the cursor.

Implementation

bool uppercaseWordForward() {
  return _transformWordForward((text) => text.toUpperCase());
}