PurchaseInfo constructor

PurchaseInfo({
  1. String? platformId,
  2. String? revenue,
  3. String? tax,
  4. String? shipping,
  5. String? currencyCode,
  6. String? coupon,
  7. int? checkoutTime,
  8. List<PurchaseItem?>? items,
})

Implementation

PurchaseInfo({
  this.platformId,
  this.revenue,
  this.tax,
  this.shipping,
  this.currencyCode,
  this.coupon,
  this.checkoutTime,
  this.items,
});