AssignmentEntity constructor

AssignmentEntity({
  1. required String? appId,
  2. required String? reporterId,
  3. String? assigneeId,
  4. TaskEntity? task,
  5. String? workflowId,
  6. int? workflowTaskSeqNumber,
  7. Object? timestamp,
  8. int? status,
  9. List<AssignmentResultEntity>? resultsCurrent,
  10. List<AssignmentResultEntity>? resultsPrevious,
  11. String? triggeredById,
  12. WorkflowNotificationEntity? confirmMessage,
  13. WorkflowNotificationEntity? rejectMessage,
})

Implementation

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