ProductOfferDetails constructor

ProductOfferDetails({
  1. String? consumptionState,
  2. String? offerId,
  3. List<String>? offerTags,
  4. String? offerToken,
  5. PreorderOfferDetails? preorderOfferDetails,
  6. String? purchaseOptionId,
  7. int? quantity,
  8. int? refundableQuantity,
  9. RentOfferDetails? rentOfferDetails,
})

Implementation

ProductOfferDetails({
  this.consumptionState,
  this.offerId,
  this.offerTags,
  this.offerToken,
  this.preorderOfferDetails,
  this.purchaseOptionId,
  this.quantity,
  this.refundableQuantity,
  this.rentOfferDetails,
});