Receipt constructor

Receipt({
  1. String? receiptType,
  2. int? adamId,
  3. int? appItemId,
  4. String? bundleId,
  5. String? applicationVersion,
  6. int? downloadId,
  7. int? versionExternalIdentifier,
  8. String? receiptCreationDate,
  9. String? receiptCreationDateMs,
  10. String? receiptCreationDatePst,
  11. String? requestDate,
  12. String? requestDateMs,
  13. String? requestDatePst,
  14. String? originalPurchaseDate,
  15. String? originalPurchaseDateMs,
  16. String? originalPurchaseDatePst,
  17. String? originalApplicationVersion,
  18. List<LatestReceiptInfo>? inApp,
})

Implementation

Receipt({
  this.receiptType,
  this.adamId,
  this.appItemId,
  this.bundleId,
  this.applicationVersion,
  this.downloadId,
  this.versionExternalIdentifier,
  this.receiptCreationDate,
  this.receiptCreationDateMs,
  this.receiptCreationDatePst,
  this.requestDate,
  this.requestDateMs,
  this.requestDatePst,
  this.originalPurchaseDate,
  this.originalPurchaseDateMs,
  this.originalPurchaseDatePst,
  this.originalApplicationVersion,
  this.inApp,
});