CommentsSection constructor
const
CommentsSection({})
Implementation
const CommentsSection({
Key? key,
required this.comments,
required this.onCommentChange,
required this.onSubmitComment,
required this.commentContent,
required this.onUpvoteComment, // Add the onUpvoteComment callback
}) : super(key: key);