Product constructor
Product({})
Creates a new Product instance.
The skuId is required, while price, quantity, and merchantId are optional.
Implementation
Product({
required this.skuId,
required this.price,
required this.quantity,
this.merchantId,
});