PendingPurchaseUpdateWrapper constructor

const PendingPurchaseUpdateWrapper({
  1. required String purchaseToken,
  2. required List<String> products,
})

Creates a pending purchase wrapper update wrapper with the given purchase details.

Implementation

const PendingPurchaseUpdateWrapper({
  required this.purchaseToken,
  required this.products,
});