moveByCharacterDocumentCommand method
TextCursorCommandResult
moveByCharacterDocumentCommand(
- TextDocument document, {
- required bool forward,
- bool extendSelection = false,
- bool clearSelection = false,
Implementation
TextCursorCommandResult moveByCharacterDocumentCommand(
TextDocument document, {
required bool forward,
bool extendSelection = false,
bool clearSelection = false,
}) {
return textMoveByCharacter(
document: document,
state: this,
forward: forward,
extendSelection: extendSelection,
clearSelection: clearSelection,
);
}