ReceiptValidationResultAndroid constructor

const ReceiptValidationResultAndroid({
  1. required bool autoRenewing,
  2. required bool betaProduct,
  3. double? cancelDate,
  4. String? cancelReason,
  5. double? deferredDate,
  6. String? deferredSku,
  7. required double freeTrialEndDate,
  8. required double gracePeriodEndDate,
  9. required String parentProductId,
  10. required String productId,
  11. required String productType,
  12. required double purchaseDate,
  13. required int quantity,
  14. required String receiptId,
  15. required double renewalDate,
  16. required String term,
  17. required String termSku,
  18. required bool testTransaction,
})

Implementation

const ReceiptValidationResultAndroid({
  required this.autoRenewing,
  required this.betaProduct,
  this.cancelDate,
  this.cancelReason,
  this.deferredDate,
  this.deferredSku,
  required this.freeTrialEndDate,
  required this.gracePeriodEndDate,
  required this.parentProductId,
  required this.productId,
  required this.productType,
  required this.purchaseDate,
  required this.quantity,
  required this.receiptId,
  required this.renewalDate,
  required this.term,
  required this.termSku,
  required this.testTransaction,
});