merge method

Implementation

OpenFeatureEvaluationContext merge(OpenFeatureEvaluationContext other) {
  return OpenFeatureEvaluationContext({
    ...attributes,
    ...other.attributes,
  }, targetingKey: other.targetingKey ?? targetingKey);
}