moveCursorForwardByCharacter method

void moveCursorForwardByCharacter(
  1. FinderBase<SemanticsNode> finder, {
  2. bool shouldModifySelection = false,
})

Performs a SemanticsAction.moveCursorForwardByCharacter action on the SemanticsNode found by finder.

If shouldModifySelection is true, then the cursor will begin or extend a selection.

Throws a StateError if:

Implementation

void moveCursorForwardByCharacter(
  finders.FinderBase<SemanticsNode> finder, {
  bool shouldModifySelection = false
}) {
  performAction(
    finder,
    SemanticsAction.moveCursorForwardByCharacter,
    args: shouldModifySelection
  );
}