toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final archived = this.archived;
final basePlans = this.basePlans;
final listings = this.listings;
final packageName = this.packageName;
final productId = this.productId;
final restrictedPaymentCountries = this.restrictedPaymentCountries;
final taxAndComplianceSettings = this.taxAndComplianceSettings;
return {
'archived': ?archived,
'basePlans': ?basePlans,
'listings': ?listings,
'packageName': ?packageName,
'productId': ?productId,
'restrictedPaymentCountries': ?restrictedPaymentCountries,
'taxAndComplianceSettings': ?taxAndComplianceSettings,
};
}