toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final listings = this.listings;
  final offerTags = this.offerTags;
  final packageName = this.packageName;
  final productId = this.productId;
  final purchaseOptions = this.purchaseOptions;
  final regionsVersion = this.regionsVersion;
  final restrictedPaymentCountries = this.restrictedPaymentCountries;
  final taxAndComplianceSettings = this.taxAndComplianceSettings;
  return {
    'listings': ?listings,
    'offerTags': ?offerTags,
    'packageName': ?packageName,
    'productId': ?productId,
    'purchaseOptions': ?purchaseOptions,
    'regionsVersion': ?regionsVersion,
    'restrictedPaymentCountries': ?restrictedPaymentCountries,
    'taxAndComplianceSettings': ?taxAndComplianceSettings,
  };
}