toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aggregateMetrics = this.aggregateMetrics;
final geoTargetConstants = this.geoTargetConstants;
final historicalMetricsOptions = this.historicalMetricsOptions;
final includeAdultKeywords = this.includeAdultKeywords;
final keywordPlanNetwork = this.keywordPlanNetwork;
final keywords = this.keywords;
final language = this.language;
return {
'aggregateMetrics': ?aggregateMetrics,
'geoTargetConstants': ?geoTargetConstants,
'historicalMetricsOptions': ?historicalMetricsOptions,
'includeAdultKeywords': ?includeAdultKeywords,
'keywordPlanNetwork': ?keywordPlanNetwork,
'keywords': ?keywords,
'language': ?language,
};
}