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