uppercaseWordForward method
Uppercases the word at or after the cursor.
Implementation
bool uppercaseWordForward() {
return _transformWordForward((text) => text.toUpperCase());
}
Uppercases the word at or after the cursor.
bool uppercaseWordForward() {
return _transformWordForward((text) => text.toUpperCase());
}