ProductDetailsResponseWrapper constructor
const
ProductDetailsResponseWrapper({
- required BillingResultWrapper billingResult,
- required List<
ProductDetailsWrapper> productDetailsList, - 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>[],
});