insertTextDocumentCommand method
TextCommandResult
insertTextDocumentCommand(
- TextDocument document, {
- required String text,
- bool replaceSelection = true,
Implementation
TextCommandResult insertTextDocumentCommand(
TextDocument document, {
required String text,
bool replaceSelection = true,
}) {
return textInsertText(
document: document,
state: this,
text: text,
replaceSelection: replaceSelection,
);
}