decodeDestinyRace function
Implementation
DestinyRace? decodeDestinyRace (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyRaceValueMap.containsKey(value)){
return _$DestinyRaceValueMap[value];
}
return DestinyRace.ProtectedInvalidEnumValue;
}