name property

String get name

The name of this format.

Implementation

String get name {
  switch (this) {
    case PatchFormat.ips:
      return 'IPS';
    case PatchFormat.bps:
      return 'BPS';
    case PatchFormat.ups:
      return 'UPS';
  }
}