SK2TransactionMessage constructor

SK2TransactionMessage({
  1. required int id,
  2. required int originalId,
  3. required String productId,
  4. required String purchaseDate,
  5. String? expirationDate,
  6. int purchasedQuantity = 1,
  7. String? appAccountToken,
  8. bool restoring = false,
  9. String? receiptData,
  10. SK2ErrorMessage? error,
})

Implementation

SK2TransactionMessage({
  required this.id,
  required this.originalId,
  required this.productId,
  required this.purchaseDate,
  this.expirationDate,
  this.purchasedQuantity = 1,
  this.appAccountToken,
  this.restoring = false,
  this.receiptData,
  this.error,
});