shortLabel property

String? shortLabel

Implementation

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