ProductDetailsResponseWrapper constructor

const ProductDetailsResponseWrapper({
  1. required BillingResultWrapper billingResult,
  2. required List<ProductDetailsWrapper> productDetailsList,
})

Creates a ProductDetailsResponseWrapper with the given purchase details.

Implementation

const ProductDetailsResponseWrapper({
  required this.billingResult,
  required this.productDetailsList,
});