ProductDetailPriceBody constructor

ProductDetailPriceBody({
  1. double? price,
  2. double? discountedPrice,
  3. String? currency,
  4. String? taxId,
  5. String? groupId,
  6. String? storeId,
})

Implementation

ProductDetailPriceBody({
  this.price,
  this.discountedPrice,
  this.currency,
  this.taxId,
  this.groupId,
  this.storeId,
});