AssignmentModel constructor
AssignmentModel({
- required String documentID,
- required String appId,
- required String reporterId,
- String? assigneeId,
- TaskModel? task,
- WorkflowModel? workflow,
- int? workflowTaskSeqNumber,
- DateTime? timestamp,
- AssignmentStatus? status,
- List<
AssignmentResultModel> ? resultsCurrent, - List<
AssignmentResultModel> ? resultsPrevious, - String? triggeredById,
- WorkflowNotificationModel? confirmMessage,
- 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,
});