decodeDestinyGatingScope function

DestinyGatingScope? decodeDestinyGatingScope(
  1. dynamic value
)

Implementation

DestinyGatingScope? decodeDestinyGatingScope (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$DestinyGatingScopeValueMap.containsKey(value)){
    return _$DestinyGatingScopeValueMap[value];
  }

  return DestinyGatingScope.ProtectedInvalidEnumValue;
}