decodeDestinyObjectiveGrantStyle function
Implementation
DestinyObjectiveGrantStyle? decodeDestinyObjectiveGrantStyle (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyObjectiveGrantStyleValueMap.containsKey(value)){
return _$DestinyObjectiveGrantStyleValueMap[value];
}
return DestinyObjectiveGrantStyle.ProtectedInvalidEnumValue;
}