kind property

The kind of this completion item. Based on the kind an icon is chosen by the editor.

Implementation

_i3.CompletionItemKind get kind =>
    _i3.CompletionItemKind.values.byName(_i5.getProperty(
      this,
      'kind',
    ));
set kind (CompletionItemKind value)

Implementation

set kind(_i3.CompletionItemKind value) {
  _i5.setProperty(
    this,
    'kind',
    value.name,
  );
}