moveCursorBackwardByWord method
- FinderBase<
SemanticsNode> finder, { - bool shouldModifySelection = false,
Performs a SemanticsAction.moveCursorBackwardByWord action on the
SemanticsNode found by finder
.
Throws a StateError if:
- The given
finder
returns zero or more than one result. - The SemanticsNode found with
finder
does not support SemanticsAction.moveCursorBackwardByWord.
Implementation
void moveCursorBackwardByWord(
finders.FinderBase<SemanticsNode> finder, {
bool shouldModifySelection = false
}) {
performAction(
finder,
SemanticsAction.moveCursorBackwardByWord,
args: shouldModifySelection
);
}