value property

String value

Returns the enum value as string.

Implementation

String get value {
  switch (this) {
    case CommercioRSAKeyType.verification:
      return 'RsaVerificationKey2018';
    case CommercioRSAKeyType.signature:
      return 'RsaSignatureKey2018';
  }
}