toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final disapprovedProductsCount = this.disapprovedProductsCount;
final feedLabel = this.feedLabel;
final merchant = this.merchant;
final productsCount = this.productsCount;
return {
'disapprovedProductsCount': ?disapprovedProductsCount,
'feedLabel': ?feedLabel,
'merchant': ?merchant,
'productsCount': ?productsCount,
};
}