toKeyManagerType method

KeyManagerType toKeyManagerType()

Implementation

KeyManagerType toKeyManagerType() {
  switch (this) {
    case 'AWS':
      return KeyManagerType.aws;
    case 'CUSTOMER':
      return KeyManagerType.customer;
  }
  throw Exception('$this is not known in enum KeyManagerType');
}