AssignmentEntity constructor
AssignmentEntity({
- required String? appId,
- required String? reporterId,
- String? assigneeId,
- TaskEntity? task,
- String? workflowId,
- int? workflowTaskSeqNumber,
- Object? timestamp,
- int? status,
- List<
AssignmentResultEntity> ? resultsCurrent, - List<
AssignmentResultEntity> ? resultsPrevious, - String? triggeredById,
- WorkflowNotificationEntity? confirmMessage,
- 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,
});