Purchase constructor

Purchase({
  1. String? purchaseId,
  2. String? productId,
  3. String? description,
  4. String? language,
  5. String? purchaseTime,
  6. String? orderId,
  7. String? amountLabel,
  8. int? amount,
  9. String? currency,
  10. int? quantity,
  11. String? purchaseState,
  12. String? developerPayload,
  13. String? invoiceId,
  14. String? subscriptionToken,
})

Implementation

Purchase({
  this.purchaseId,
  this.productId,
  this.description,
  this.language,
  this.purchaseTime,
  this.orderId,
  this.amountLabel,
  this.amount,
  this.currency,
  this.quantity,
  this.purchaseState,
  this.developerPayload,
  this.invoiceId,
  this.subscriptionToken,
});