onMoveCursorBackwardByWord property
The handler for SemanticsAction.moveCursorBackwardByWord.
This handler is invoked when the user wants to move the cursor in a text field backward by one word.
TalkBack users can trigger this by pressing the volume down key while the input focus is in a text field.
Implementation
MoveCursorHandler? get onMoveCursorBackwardByWord => _onMoveCursorBackwardByWord;Implementation
set onMoveCursorBackwardByWord(MoveCursorHandler? value) {
  assert(value != null);
  _addAction(SemanticsAction.moveCursorBackwardByWord, (Object? args) {
    final bool extendSelection = args! as bool;
    value!(extendSelection);
  });
  _onMoveCursorBackwardByCharacter = value;
}