HumanLabeledTrial constructor

const HumanLabeledTrial({
  1. required TrialId trialId,
  2. required double humanScore,
  3. String? humanRationale,
  4. required Map<String, dynamic> input,
  5. required String output,
})

Implementation

const HumanLabeledTrial({
  required this.trialId,
  required this.humanScore,
  this.humanRationale,
  required this.input,
  required this.output,
});