ProductDetailsWrapper constructor
const
ProductDetailsWrapper({
- required String description,
- required String name,
- OneTimePurchaseOfferDetailsWrapper? oneTimePurchaseOfferDetails,
- required String productId,
- required ProductType productType,
- List<
SubscriptionOfferDetailsWrapper> ? subscriptionOfferDetails, - required String title,
Creates a ProductDetailsWrapper with the given purchase details.
Implementation
const ProductDetailsWrapper({
required this.description,
required this.name,
this.oneTimePurchaseOfferDetails,
required this.productId,
required this.productType,
this.subscriptionOfferDetails,
required this.title,
});