kind property
QuickPickItemKind?
get
kind
The kind of QuickPickItem that will determine how this item is rendered in the quick pick. When not specified, the default is {@link QuickPickItemKind.Default}.
Implementation
_i3.QuickPickItemKind? get kind => switch (_i5.getProperty(
this,
'kind',
)) {
_i2.String name => _i3.QuickPickItemKind.values.byName(name),
_ => null
};
set
kind
(QuickPickItemKind? value)
Implementation
set kind(_i3.QuickPickItemKind? value) {
_i5.setProperty(
this,
'kind',
value?.name ?? _i6.undefined,
);
}