OneTimePurchaseDetails constructor

OneTimePurchaseDetails({
  1. String? offerId,
  2. String? purchaseOptionId,
  3. int? quantity,
  4. RentalDetails? rentalDetails,
})

Implementation

OneTimePurchaseDetails({
  this.offerId,
  this.purchaseOptionId,
  this.quantity,
  this.rentalDetails,
});