TransactionData constructor

TransactionData({
  1. String? transactionId,
  2. String? productId,
  3. String? transactionDate,
  4. String? originalTransactionId,
  5. String? status,
  6. String? json,
  7. String? appAccountToken,
  8. String? receiptData,
  9. String? jwsRepresentation,
})

Implementation

TransactionData({
  this.transactionId,
  this.productId,
  this.transactionDate,
  this.originalTransactionId,
  this.status,
  this.json,
  this.appAccountToken,
  this.receiptData,
  this.jwsRepresentation,
});