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