PurchasesHistoryResult constructor

const PurchasesHistoryResult({
  1. required BillingResultWrapper billingResult,
  2. required List<PurchaseHistoryRecordWrapper> purchaseHistoryRecordList,
})

Creates a PurchasesHistoryResult with the provided history.

Implementation

const PurchasesHistoryResult({
  required this.billingResult,
  required this.purchaseHistoryRecordList,
});