toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final comments = this.comments;
final kind = this.kind;
final nextPageToken = this.nextPageToken;
return {
'comments': ?comments,
'kind': ?kind,
'nextPageToken': ?nextPageToken,
};
}