detail property
String?
get
detail
A human-readable string which is rendered less prominent in a separate line. Supports rendering of
{@link ThemeIcon theme icons} via the $(<name>)
-syntax.
Note: this property is ignored when {@link QuickPickItem.kind kind} is set to {@link QuickPickItemKind.Separator}
Implementation
_i2.String? get detail => _i5.getProperty(
this,
'detail',
);
set
detail
(String? value)
Implementation
set detail(_i2.String? value) {
_i5.setProperty(
this,
'detail',
value ?? _i6.undefined,
);
}