TaskAssignment constructor

TaskAssignment({
  1. required int taskAssignmentId,
  2. Task? task,
  3. DelegationGroupRegister? delegationGroupRegister,
  4. DateTime? startDate,
  5. DateTime? dueDate,
  6. DateTime? completedDate,
  7. String? description,
  8. dynamic employeeAdd,
  9. dynamic employeeEdit,
  10. DateTime? dateAdd,
  11. DateTime? dateEdit,
  12. String? assignmentName,
  13. String? userAdd,
  14. String? userEdit,
})

Implementation

TaskAssignment({
   required this.taskAssignmentId,
   this.task,
   this.delegationGroupRegister,
   this.startDate,
  this.dueDate,
   this.completedDate,
   this.description,
  this.employeeAdd,
  this.employeeEdit,
   this.dateAdd,
   this.dateEdit,
  this.assignmentName,
  this.userAdd,
  this.userEdit
});