title property
String?
get
title
The tree view title is initially taken from the extension package.json Changes to the title property will be properly reflected in the UI in the title of the view.
Implementation
_i2.String? get title => _i5.getProperty(
this,
'title',
);
set
title
(String? value)
Implementation
set title(_i2.String? value) {
_i5.setProperty(
this,
'title',
value ?? _i6.undefined,
);
}