toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final histogramQueryResults = this.histogramQueryResults;
  final matchingDocuments = this.matchingDocuments;
  final metadata = this.metadata;
  final nextPageToken = this.nextPageToken;
  final questionAnswer = this.questionAnswer;
  final totalSize = this.totalSize;
  return {
    'histogramQueryResults': ?histogramQueryResults,
    'matchingDocuments': ?matchingDocuments,
    'metadata': ?metadata,
    'nextPageToken': ?nextPageToken,
    'questionAnswer': ?questionAnswer,
    'totalSize': ?totalSize,
  };
}