severity property
LanguageStatusSeverity
get
severity
The severity of this item.
Defaults to {@link LanguageStatusSeverity.Information information}. You can use this property to signal to users that there is a problem that needs attention, like a missing executable or an invalid configuration.
Implementation
_i3.LanguageStatusSeverity get severity =>
_i3.LanguageStatusSeverity.values.byName(_i5.getProperty(
this,
'severity',
));
set
severity
(LanguageStatusSeverity value)
Implementation
set severity(_i3.LanguageStatusSeverity value) {
_i5.setProperty(
this,
'severity',
value.name,
);
}