Estimate constructor

Estimate({
  1. double? totalOnlinePrice,
  2. double? estimatedTotalDiscountedPrice,
  3. int? estimatedDiscount,
  4. String? currency,
  5. double? onlinePrice,
  6. double? estimatedDiscountedPrice,
  7. double? taxAmount,
  8. double? estimatedTotalDiscountedPriceBTC,
  9. double? totalOnlinePriceBTC,
})

Implementation

Estimate(
    {this.totalOnlinePrice,
    this.estimatedTotalDiscountedPrice,
    this.estimatedDiscount,
    this.currency,
    this.onlinePrice,
    this.estimatedDiscountedPrice,
    this.taxAmount,
    this.estimatedTotalDiscountedPriceBTC,
    this.totalOnlinePriceBTC,
    });