EvaluationResponse constructor

EvaluationResponse({
  1. required String type,
  2. BooleanEvaluationResponse? booleanEvaluationResponse,
  3. VariantEvaluationResponse? variantEvaluationResponse,
  4. ErrorEvaluationResponse? errorEvaluationResponse,
})

Implementation

EvaluationResponse({
  required this.type,
  this.booleanEvaluationResponse,
  this.variantEvaluationResponse,
  this.errorEvaluationResponse,
});