AssignmentModel constructor

AssignmentModel({
  1. required String documentID,
  2. required String appId,
  3. required String reporterId,
  4. String? assigneeId,
  5. TaskModel? task,
  6. WorkflowModel? workflow,
  7. int? workflowTaskSeqNumber,
  8. DateTime? timestamp,
  9. AssignmentStatus? status,
  10. List<AssignmentResultModel>? resultsCurrent,
  11. List<AssignmentResultModel>? resultsPrevious,
  12. String? triggeredById,
  13. WorkflowNotificationModel? confirmMessage,
  14. WorkflowNotificationModel? rejectMessage,
})

Implementation

AssignmentModel({
  required this.documentID,
  required this.appId,
  required this.reporterId,
  this.assigneeId,
  this.task,
  this.workflow,
  this.workflowTaskSeqNumber,
  this.timestamp,
  this.status,
  this.resultsCurrent,
  this.resultsPrevious,
  this.triggeredById,
  this.confirmMessage,
  this.rejectMessage,
});