decodeDestinyGraphNodeState function
Implementation
DestinyGraphNodeState? decodeDestinyGraphNodeState (dynamic value) {
if(value == null) {
return null;
}
if(_$DestinyGraphNodeStateValueMap.containsKey(value)){
return _$DestinyGraphNodeStateValueMap[value];
}
return DestinyGraphNodeState.ProtectedInvalidEnumValue;
}