Case constructor

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

Implementation

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