Comment constructor
Comment({})
Implementation
Comment({
required this.commentID,
required this.postID,
required this.user,
required this.content,
required this.likeCount,
required this.didIlike,
required this.date,
});