OpenFeatureEvaluationContext constructor

OpenFeatureEvaluationContext(
  1. Map<String, dynamic> attributes, {
  2. String? targetingKey,
})

Implementation

OpenFeatureEvaluationContext(
  Map<String, dynamic> attributes, {
  String? targetingKey,
}) : _context = EvaluationContext(
       attributes: Map<String, dynamic>.unmodifiable(attributes),
       targetingKey: targetingKey,
     );