ProductDetailsWrapper constructor

ProductDetailsWrapper({
  1. required String description,
  2. required String name,
  3. required String productId,
  4. required String productType,
  5. required String title,
  6. OneTimePurchaseOfferDetailsWrapper? oneTimePurchaseOfferDetails,
  7. List<SubscriptionOfferDetailsWrapper>? subscriptionOfferDetails,
})

Implementation

ProductDetailsWrapper({
  required this.description,
  required this.name,
  required this.productId,
  required this.productType,
  required this.title,
  this.oneTimePurchaseOfferDetails,
  this.subscriptionOfferDetails,
});