decodeDestinyGender function
Implementation
DestinyGender? decodeDestinyGender (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyGenderValueMap.containsKey(value)){
return _$DestinyGenderValueMap[value];
}
return DestinyGender.ProtectedInvalidEnumValue;
}