PurchaseHistoryRecordWrapper constructor

const PurchaseHistoryRecordWrapper({
  1. required int purchaseTime,
  2. required String purchaseToken,
  3. required String signature,
  4. required List<String> products,
  5. required String originalJson,
  6. required String? developerPayload,
})

Creates a PurchaseHistoryRecordWrapper with the given record details.

Implementation

const PurchaseHistoryRecordWrapper({
  required this.purchaseTime,
  required this.purchaseToken,
  required this.signature,
  required this.products,
  required this.originalJson,
  required this.developerPayload,
});