TestCase constructor

TestCase({
  1. int? createdBy,
  2. DateTime? createdOn,
  3. String? customExpected,
  4. String? customPreconds,
  5. String? customSteps,
  6. List<CustomStep>? customStepsSeparated,
  7. String? estimate,
  8. String? estimateForecast,
  9. required int id,
  10. int? milestoneId,
  11. int? priorityId,
  12. String? refs,
  13. int? sectionId,
  14. int? suiteId,
  15. String? title,
  16. int? typeId,
  17. int? updatedBy,
  18. DateTime? updatedOn,
})

Implementation

TestCase({
  this.createdBy,
  this.createdOn,
  this.customExpected,
  this.customPreconds,
  this.customSteps,
  this.customStepsSeparated,
  this.estimate,
  this.estimateForecast,
  required this.id,
  this.milestoneId,
  this.priorityId,
  this.refs,
  this.sectionId,
  this.suiteId,
  this.title,
  this.typeId,
  this.updatedBy,
  this.updatedOn,
});