PricingOption constructor

PricingOption({
  1. String? packageId,
  2. String? packageName,
  3. double? tripTaxUsd,
  4. double? discountedPrice,
  5. double? discountedPercentage,
  6. double? totalDiscountedPrice,
})

Implementation

PricingOption({
  this.packageId,
  this.packageName,
  this.tripTaxUsd,
  this.discountedPrice,
  this.discountedPercentage,
  this.totalDiscountedPrice,
});