decodeDestinyActivityDifficultyId function
Implementation
DestinyActivityDifficultyId? decodeDestinyActivityDifficultyId (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyActivityDifficultyIdValueMap.containsKey(value)){
return _$DestinyActivityDifficultyIdValueMap[value];
}
return DestinyActivityDifficultyId.ProtectedInvalidEnumValue;
}