UserChoiceDetailsWrapper constructor

const UserChoiceDetailsWrapper({
  1. required String originalExternalTransactionId,
  2. required String externalTransactionToken,
  3. required List<UserChoiceDetailsProductWrapper> products,
})

Creates a purchase wrapper with the given purchase details.

Implementation

const UserChoiceDetailsWrapper({
  required this.originalExternalTransactionId,
  required this.externalTransactionToken,
  required this.products,
});