title property
String?
get
title
View title displayed in the UI.
The view title is initially taken from the extension package.json
contribution.
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,
);
}