filterText property

String get filterText

A text that is used to decide if this inline completion should be shown. When falsy the {@link InlineCompletionItem.insertText} is used.

An inline completion is shown if the text to replace is a prefix of the filter text.

Implementation

_i2.String get filterText => _i5.getProperty(
      this,
      'filterText',
    );
set filterText (String value)

Implementation

set filterText(_i2.String value) {
  _i5.setProperty(
    this,
    'filterText',
    value,
  );
}