toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateRange = this.dateRange;
final dimensionFilters = this.dimensionFilters;
final dimensions = this.dimensions;
final localizationSettings = this.localizationSettings;
final maxReportRows = this.maxReportRows;
final metrics = this.metrics;
final sortConditions = this.sortConditions;
final timeZone = this.timeZone;
return {
'dateRange': ?dateRange,
'dimensionFilters': ?dimensionFilters,
'dimensions': ?dimensions,
'localizationSettings': ?localizationSettings,
'maxReportRows': ?maxReportRows,
'metrics': ?metrics,
'sortConditions': ?sortConditions,
'timeZone': ?timeZone,
};
}