Estimate.fromJson constructor

Estimate.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Estimate.fromJson(Map<String, dynamic> json) {
  totalOnlinePrice = json['totalOnlinePrice'];
  estimatedTotalDiscountedPrice = json['estimatedTotalDiscountedPrice'];
  estimatedDiscount = json['estimatedDiscount'];
  onlinePrice = json['onlinePrice'];
  estimatedDiscountedPrice = json['estimatedDiscountedPrice'];
  taxAmount = json['taxAmount'];
  currency = json['currency'];
  estimatedTotalDiscountedPriceBTC = json['estimatedTotalDiscountedPriceBTC'];
  totalOnlinePriceBTC = json['totalOnlinePriceBTC'];
}