toEFSTransitEncryption method
Implementation
EFSTransitEncryption toEFSTransitEncryption() {
switch (this) {
case 'ENABLED':
return EFSTransitEncryption.enabled;
case 'DISABLED':
return EFSTransitEncryption.disabled;
}
throw Exception('$this is not known in enum EFSTransitEncryption');
}