toAuthenticationScheme method
Implementation
AuthenticationScheme toAuthenticationScheme() {
switch (this) {
case 'AKAMAI':
return AuthenticationScheme.akamai;
case 'COMMON':
return AuthenticationScheme.common;
}
throw Exception('$this is not known in enum AuthenticationScheme');
}