PriceBody constructor

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

Implementation

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