CommentAggregates constructor
const
CommentAggregates({})
Implementation
const factory CommentAggregates({
@JsonKey(name: 'comment_id') required int commentId,
@Default(0) int score,
@Default(0) int upvotes,
@Default(0) int downvotes,
@JsonKey(name: 'child_count') @Default(0) int childCount,
}) = _CommentAggregates;