Assignment constructor

Assignment({
  1. DateTime? acceptTime,
  2. String? answer,
  3. DateTime? approvalTime,
  4. String? assignmentId,
  5. AssignmentStatus? assignmentStatus,
  6. DateTime? autoApprovalTime,
  7. DateTime? deadline,
  8. String? hITId,
  9. DateTime? rejectionTime,
  10. String? requesterFeedback,
  11. DateTime? submitTime,
  12. String? workerId,
})

Implementation

Assignment({
  this.acceptTime,
  this.answer,
  this.approvalTime,
  this.assignmentId,
  this.assignmentStatus,
  this.autoApprovalTime,
  this.deadline,
  this.hITId,
  this.rejectionTime,
  this.requesterFeedback,
  this.submitTime,
  this.workerId,
});