filterText property
String
get
filterText
A string that should be used when filtering a set of
completion items. When falsy
the {@link CompletionItem.label label}
is used.
Note that the filter text is matched against the leading word (prefix) which is defined by the {@linkcode CompletionItem.range range}-property.
Implementation
_i2.String get filterText => _i5.getProperty(
this,
'filterText',
);
set
filterText
(String value)
Implementation
set filterText(_i2.String value) {
_i5.setProperty(
this,
'filterText',
value,
);
}