toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final canReply = this.canReply;
final channelId = this.channelId;
final isPublic = this.isPublic;
final postId = this.postId;
final topLevelComment = this.topLevelComment;
final totalReplyCount = this.totalReplyCount;
final videoId = this.videoId;
return {
'canReply': ?canReply,
'channelId': ?channelId,
'isPublic': ?isPublic,
'postId': ?postId,
'topLevelComment': ?topLevelComment,
'totalReplyCount': ?totalReplyCount,
'videoId': ?videoId,
};
}