toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final broadenedQueryJobsCount = this.broadenedQueryJobsCount;
final estimatedTotalSize = this.estimatedTotalSize;
final histogramResults = this.histogramResults;
final locationFilters = this.locationFilters;
final matchingJobs = this.matchingJobs;
final metadata = this.metadata;
final nextPageToken = this.nextPageToken;
final spellCorrection = this.spellCorrection;
final totalSize = this.totalSize;
return {
'broadenedQueryJobsCount': ?broadenedQueryJobsCount,
'estimatedTotalSize': ?estimatedTotalSize,
'histogramResults': ?histogramResults,
'locationFilters': ?locationFilters,
'matchingJobs': ?matchingJobs,
'metadata': ?metadata,
'nextPageToken': ?nextPageToken,
'spellCorrection': ?spellCorrection,
'totalSize': ?totalSize,
};
}