decodeDeveloperRole function
Implementation
DeveloperRole? decodeDeveloperRole (dynamic value) {
if(value == null) {
return null;
}
if(_$DeveloperRoleValueMap.containsKey(value)){
return _$DeveloperRoleValueMap[value];
}
return DeveloperRole.ProtectedInvalidEnumValue;
}