webName property

String webName

Implementation

String get webName {
  switch (this) {
    case UnitFrom.inch:
      return 'in';
    case UnitFrom.mm:
      return 'mm';
    case UnitFrom.cm:
      return 'cm';
    case UnitFrom.pt:
      return 'pt';
  }
}