toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final commentCount = this.commentCount;
final likeCount = this.likeCount;
final viewCount = this.viewCount;
return {
'commentCount': ?commentCount,
'likeCount': ?likeCount,
'viewCount': ?viewCount,
};
}