LineItem constructor

LineItem({
  1. Money? listingPrice,
  2. OneTimePurchaseDetails? oneTimePurchaseDetails,
  3. PaidAppDetails? paidAppDetails,
  4. String? productId,
  5. String? productTitle,
  6. SubscriptionDetails? subscriptionDetails,
  7. Money? tax,
  8. Money? total,
})

Implementation

LineItem({
  this.listingPrice,
  this.oneTimePurchaseDetails,
  this.paidAppDetails,
  this.productId,
  this.productTitle,
  this.subscriptionDetails,
  this.tax,
  this.total,
});