RestoredPurchase constructor

RestoredPurchase({
  1. required String productId,
  2. required String transactionId,
  3. required int purchaseTime,
  4. required int originalPurchaseTime,
  5. required int expireTime,
  6. required bool isUpgraded,
  7. required String offerId,
  8. required String accountToken,
  9. required String rawJson,
})

Implementation

RestoredPurchase({
  required this.productId,
  required this.transactionId,
  required this.purchaseTime,
  required this.originalPurchaseTime,
  required this.expireTime,
  required this.isUpgraded,
  required this.offerId,
  required this.accountToken,
  required this.rawJson,
});