TaskModelResponse constructor

TaskModelResponse({
  1. required String creatorId,
  2. required String createdAt,
  3. String? assigneeId,
  4. String? assignerId,
  5. required int commentCount,
  6. required bool isCompleted,
  7. required String content,
  8. required String description,
  9. DueModel? due,
  10. DurationModel? duration,
  11. required String id,
  12. required List<String> labels,
  13. required int order,
  14. required int priority,
  15. required String projectId,
  16. String? sectionId,
  17. String? parentId,
  18. required String url,
})

Implementation

TaskModelResponse({
  required this.creatorId,
  required this.createdAt,
  this.assigneeId,
  this.assignerId,
  required this.commentCount,
  required this.isCompleted,
  required this.content,
  required this.description,
  this.due,
  this.duration,
  required this.id,
  required this.labels,
  required this.order,
  required this.priority,
  required this.projectId,
  this.sectionId,
  this.parentId,
  required this.url,
});