decodeDestinyPresentationScreenStyle function
Implementation
DestinyPresentationScreenStyle? decodeDestinyPresentationScreenStyle (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyPresentationScreenStyleValueMap.containsKey(value)){
return _$DestinyPresentationScreenStyleValueMap[value];
}
return DestinyPresentationScreenStyle.ProtectedInvalidEnumValue;
}