toJson method

Map<String, dynamic> toJson()

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,
  };
}