toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bestSellers = this.bestSellers;
final brand = this.brand;
final competitiveVisibility = this.competitiveVisibility;
final metrics = this.metrics;
final priceCompetitiveness = this.priceCompetitiveness;
final priceInsights = this.priceInsights;
final productCluster = this.productCluster;
final productView = this.productView;
final segments = this.segments;
final topicTrends = this.topicTrends;
return {
'bestSellers': ?bestSellers,
'brand': ?brand,
'competitiveVisibility': ?competitiveVisibility,
'metrics': ?metrics,
'priceCompetitiveness': ?priceCompetitiveness,
'priceInsights': ?priceInsights,
'productCluster': ?productCluster,
'productView': ?productView,
'segments': ?segments,
'topicTrends': ?topicTrends,
};
}