decodeDestinyPresentationScreenStyle function

DestinyPresentationScreenStyle? decodeDestinyPresentationScreenStyle(
  1. dynamic value
)

Implementation

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

  return DestinyPresentationScreenStyle.ProtectedInvalidEnumValue;
}