TestResult constructor

TestResult({
  1. int? assignedToId,
  2. List<int>? attachmentIds,
  3. String? comment,
  4. int? createdBy,
  5. DateTime? createdOn,
  6. List<CustomStep>? customStepResults,
  7. String? defects,
  8. String? elapsed,
  9. required int id,
  10. int? statusId,
  11. int? testId,
  12. String? version,
})

Implementation

TestResult({
  this.assignedToId,
  this.attachmentIds,
  this.comment,
  this.createdBy,
  this.createdOn,
  this.customStepResults,
  this.defects,
  this.elapsed,
  required this.id,
  this.statusId,
  this.testId,
  this.version,
});