TaskModelResponse constructor
TaskModelResponse({ - required String creatorId,
- required String createdAt,
- String? assigneeId,
- String? assignerId,
- required bool isCompleted,
- required String content,
- required String description,
- DueModel? due,
- DurationModel? duration,
- required String id,
- required List<String> labels,
- required int order,
- required int priority,
- required String projectId,
- String? sectionId,
- String? parentId,
- 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,
});