name property
String?
get
name
The name of the entry, like 'Python Language Indicator', 'Git Status' etc. Try to keep the length of the name short, yet descriptive enough that users can understand what the status bar item is about.
Implementation
_i2.String? get name => _i5.getProperty(
this,
'name',
);
set
name
(String? value)
Implementation
set name(_i2.String? value) {
_i5.setProperty(
this,
'name',
value ?? _i6.undefined,
);
}