decodeDestinyUnlockValueUIStyle function
Implementation
DestinyUnlockValueUIStyle? decodeDestinyUnlockValueUIStyle (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyUnlockValueUIStyleValueMap.containsKey(value)){
return _$DestinyUnlockValueUIStyleValueMap[value];
}
return DestinyUnlockValueUIStyle.ProtectedInvalidEnumValue;
}