shortLabel property
String?
get
shortLabel
Implementation
String? get shortLabel {
switch (this) {
case TimeSpanUnit.millisecond:
return "ms";
case TimeSpanUnit.microsecond:
return "ns";
default:
return label.first;
}
}