Comment constructor
Comment({})
Implementation
Comment({
required this.id,
required this.content,
required this.postId,
this.parentId,
this.replies = const [],
this.likesCount = 0,
required this.user,
this.isLikedByUser,
required this.createdAt,
required this.updatedAt,
});