decodeDestinyStatCategory function
Implementation
DestinyStatCategory? decodeDestinyStatCategory (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyStatCategoryValueMap.containsKey(value)){
return _$DestinyStatCategoryValueMap[value];
}
return DestinyStatCategory.ProtectedInvalidEnumValue;
}