TestCase constructor
TestCase({
- int? createdBy,
- DateTime? createdOn,
- String? customExpected,
- String? customPreconds,
- String? customSteps,
- List<
CustomStep> ? customStepsSeparated, - String? estimate,
- String? estimateForecast,
- required int id,
- int? milestoneId,
- int? priorityId,
- String? refs,
- int? sectionId,
- int? suiteId,
- String? title,
- int? typeId,
- int? updatedBy,
- 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,
});