toAuthTypeValue method
Implementation
AuthTypeValue toAuthTypeValue() {
switch (this) {
case 'no':
return AuthTypeValue.no;
case 'password':
return AuthTypeValue.password;
}
throw Exception('$this is not known in enum AuthTypeValue');
}