decodeDestinyObjectiveGrantStyle function

DestinyObjectiveGrantStyle? decodeDestinyObjectiveGrantStyle(
  1. dynamic value
)

Implementation

DestinyObjectiveGrantStyle? decodeDestinyObjectiveGrantStyle (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$DestinyObjectiveGrantStyleValueMap.containsKey(value)){
    return _$DestinyObjectiveGrantStyleValueMap[value];
  }

  return DestinyObjectiveGrantStyle.ProtectedInvalidEnumValue;
}