wireValue property

String get wireValue

Uppercase representation used on the platform channel.

Implementation

String get wireValue {
  switch (this) {
    case KeyFormat.base64:
      return 'BASE64';
    case KeyFormat.pem:
      return 'PEM';
    case KeyFormat.raw:
      return 'RAW';
    case KeyFormat.hex:
      return 'HEX';
  }
}