TestCase constructor

TestCase({
  1. int? createdBy,
  2. DateTime? createdOn,
  3. Map<String, dynamic>? customAttributes,
  4. int? displayOrder,
  5. String? estimate,
  6. String? estimateForecast,
  7. required int id,
  8. int? isDeleted,
  9. int? milestoneId,
  10. int? priorityId,
  11. String? refs,
  12. int? sectionId,
  13. int? suiteId,
  14. int? templateId,
  15. String? title,
  16. int? typeId,
  17. int? updatedBy,
  18. DateTime? updatedOn,
})

Implementation

TestCase({
  this.createdBy,
  this.createdOn,
  this.customAttributes,
  this.displayOrder,
  this.estimate,
  this.estimateForecast,
  required this.id,
  this.isDeleted,
  this.milestoneId,
  this.priorityId,
  this.refs,
  this.sectionId,
  this.suiteId,
  this.templateId,
  this.title,
  this.typeId,
  this.updatedBy,
  this.updatedOn,
});