ProductDetailsWrapper constructor
ProductDetailsWrapper({
- required String description,
- required String name,
- required String productId,
- required String productType,
- required String title,
- OneTimePurchaseOfferDetailsWrapper? oneTimePurchaseOfferDetails,
- List<
SubscriptionOfferDetailsWrapper> ? subscriptionOfferDetails,
Implementation
ProductDetailsWrapper({
required this.description,
required this.name,
required this.productId,
required this.productType,
required this.title,
this.oneTimePurchaseOfferDetails,
this.subscriptionOfferDetails,
});