TestCase constructor
TestCase({
- int? createdBy,
- DateTime? createdOn,
- Map<
String, dynamic> ? customAttributes, - int? displayOrder,
- String? estimate,
- String? estimateForecast,
- required int id,
- int? isDeleted,
- int? milestoneId,
- int? priorityId,
- String? refs,
- int? sectionId,
- int? suiteId,
- int? templateId,
- String? title,
- int? typeId,
- int? updatedBy,
- 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,
});