CommentModel constructor

CommentModel({
  1. required String id,
  2. required String content,
  3. required String postedAt,
  4. String? projectId,
  5. String? taskId,
  6. AttachmentModel? attachment,
})

Implementation

CommentModel({
  required this.id,
  required this.content,
  required this.postedAt,
  this.projectId,
  this.taskId,
  this.attachment,
});