ProductDetailsResponseWrapper constructor

const ProductDetailsResponseWrapper({
  1. required BillingResultWrapper billingResult,
  2. required List<ProductDetailsWrapper> productDetailsList,
  3. List<UnfetchedProductWrapper> unfetchedProductList = const <UnfetchedProductWrapper>[],
})

Creates a ProductDetailsResponseWrapper with the given purchase details.

Implementation

const ProductDetailsResponseWrapper({
  required this.billingResult,
  required this.productDetailsList,
  this.unfetchedProductList = const <UnfetchedProductWrapper>[],
});