toEncryptionType method
Implementation
EncryptionType toEncryptionType() {
switch (this) {
case 'KMS':
return EncryptionType.kms;
}
throw Exception('$this is not known in enum EncryptionType');
}
EncryptionType toEncryptionType() {
switch (this) {
case 'KMS':
return EncryptionType.kms;
}
throw Exception('$this is not known in enum EncryptionType');
}