toAuthScheme method
Implementation
AuthScheme toAuthScheme() {
switch (this) {
case 'SECRETS':
return AuthScheme.secrets;
}
throw Exception('$this is not known in enum AuthScheme');
}
AuthScheme toAuthScheme() {
switch (this) {
case 'SECRETS':
return AuthScheme.secrets;
}
throw Exception('$this is not known in enum AuthScheme');
}