Transaction constructor

Transaction({
  1. required String id,
  2. required String productId,
  3. required String bundleId,
  4. required int purchaseTime,
  5. required int originalPurchaseTime,
  6. required int expireTime,
  7. required String rawJson,
})

Implementation

Transaction({
  required this.id,
  required this.productId,
  required this.bundleId,
  required this.purchaseTime,
  required this.originalPurchaseTime,
  required this.expireTime,
  required this.rawJson,
});