Case constructor

Case({
  1. CaseClassification? classification,
  2. String? createTime,
  3. Actor? creator,
  4. String? description,
  5. String? displayName,
  6. bool? escalated,
  7. String? name,
  8. String? priority,
  9. String? severity,
  10. String? state,
  11. List<String>? subscriberEmailAddresses,
  12. bool? testCase,
  13. String? timeZone,
  14. String? updateTime,
})

Implementation

Case({
  this.classification,
  this.createTime,
  this.creator,
  this.description,
  this.displayName,
  this.escalated,
  this.name,
  this.priority,
  this.severity,
  this.state,
  this.subscriberEmailAddresses,
  this.testCase,
  this.timeZone,
  this.updateTime,
});