Estimate constructor
Estimate({ - double? totalOnlinePrice,
- double? estimatedTotalDiscountedPrice,
- int? estimatedDiscount,
- String? currency,
- double? onlinePrice,
- double? estimatedDiscountedPrice,
- double? taxAmount,
- double? estimatedTotalDiscountedPriceBTC,
- double? totalOnlinePriceBTC,
})
Implementation
Estimate(
{this.totalOnlinePrice,
this.estimatedTotalDiscountedPrice,
this.estimatedDiscount,
this.currency,
this.onlinePrice,
this.estimatedDiscountedPrice,
this.taxAmount,
this.estimatedTotalDiscountedPriceBTC,
this.totalOnlinePriceBTC,
});