OpsItem constructor

OpsItem({
  1. DateTime? actualEndTime,
  2. DateTime? actualStartTime,
  3. String? category,
  4. String? createdBy,
  5. DateTime? createdTime,
  6. String? description,
  7. String? lastModifiedBy,
  8. DateTime? lastModifiedTime,
  9. List<OpsItemNotification>? notifications,
  10. Map<String, OpsItemDataValue>? operationalData,
  11. String? opsItemId,
  12. String? opsItemType,
  13. DateTime? plannedEndTime,
  14. DateTime? plannedStartTime,
  15. int? priority,
  16. List<RelatedOpsItem>? relatedOpsItems,
  17. String? severity,
  18. String? source,
  19. OpsItemStatus? status,
  20. String? title,
  21. String? version,
})

Implementation

OpsItem({
  this.actualEndTime,
  this.actualStartTime,
  this.category,
  this.createdBy,
  this.createdTime,
  this.description,
  this.lastModifiedBy,
  this.lastModifiedTime,
  this.notifications,
  this.operationalData,
  this.opsItemId,
  this.opsItemType,
  this.plannedEndTime,
  this.plannedStartTime,
  this.priority,
  this.relatedOpsItems,
  this.severity,
  this.source,
  this.status,
  this.title,
  this.version,
});