decodeDestinyStatsMergeMethod function
Implementation
DestinyStatsMergeMethod? decodeDestinyStatsMergeMethod (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyStatsMergeMethodValueMap.containsKey(value)){
return _$DestinyStatsMergeMethodValueMap[value];
}
return DestinyStatsMergeMethod.ProtectedInvalidEnumValue;
}