Content constructor

Content({
  1. String? id,
  2. String? taskName,
  3. DateTime? startDate,
  4. DateTime? endDate,
  5. int? channelId,
  6. String? channelName,
  7. int? levelId,
  8. String? levelName,
  9. dynamic designationName,
  10. String? createdBy,
  11. dynamic updatedBy,
  12. String? createdDate,
  13. dynamic updatedDate,
  14. String? typeName,
  15. int? status,
  16. String? statusName,
  17. dynamic taskSubmitId,
  18. dynamic checkInId,
  19. String? locationId1,
  20. String? locationId2,
  21. String? locationId3,
  22. String? locationId4,
  23. String? locationName1,
  24. String? locationName2,
  25. String? locationName3,
  26. String? locationName4,
  27. dynamic submitApproverDesignationId,
  28. dynamic reason,
  29. List<Assignee>? assignee,
  30. List<TaskBody>? taskBody,
  31. dynamic attendeeDesignationIds,
  32. List<AttendeeDesignation>? attendeeDesignations,
})

Implementation

Content({
  this.id,
  this.taskName,
  this.startDate,
  this.endDate,
  this.channelId,
  this.channelName,
  this.levelId,
  this.levelName,
  this.designationName,
  this.createdBy,
  this.updatedBy,
  this.createdDate,
  this.updatedDate,
  this.typeName,
  this.status,
  this.statusName,
  this.taskSubmitId,
  this.checkInId,
  this.locationId1,
  this.locationId2,
  this.locationId3,
  this.locationId4,
  this.locationName1,
  this.locationName2,
  this.locationName3,
  this.locationName4,
  this.submitApproverDesignationId,
  this.reason,
  this.assignee,
  this.taskBody,
  this.attendeeDesignationIds,
  this.attendeeDesignations,
});