Trial constructor

Trial({
  1. required String runName,
  2. required String suiteName,
  3. required String taskId,
  4. required int trialIndex,
  5. required DateTime startedAt,
  6. required DateTime endedAt,
  7. required TrialStatus status,
  8. String? failureReason,
})

Implementation

Trial({
  required this.runName,
  required this.suiteName,
  required this.taskId,
  required this.trialIndex,
  required this.startedAt,
  required this.endedAt,
  required this.status,
  this.failureReason,
});