textEdit property
TextEdit
get
textEdit
@deprecated Use CompletionItem.insertText
and CompletionItem.range
instead.
An {@link TextEdit edit} which is applied to a document when selecting this completion. When an edit is provided the value of {@link CompletionItem.insertText insertText} is ignored.
The {@link Range} of the edit must be single-line and on the same line completions were {@link CompletionItemProvider.provideCompletionItems requested} at.
Implementation
_i3.TextEdit get textEdit => _i5.getProperty(
this,
'textEdit',
);
set
textEdit
(TextEdit value)
Implementation
set textEdit(_i3.TextEdit value) {
_i5.setProperty(
this,
'textEdit',
value,
);
}