decodeDestinyUnlockValueUIStyle function

DestinyUnlockValueUIStyle? decodeDestinyUnlockValueUIStyle(
  1. dynamic value
)

Implementation

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

  return DestinyUnlockValueUIStyle.ProtectedInvalidEnumValue;
}