Product constructor

Product({
  1. String? id,
  2. String? variantId,
  3. List<ProductOption?>? productOptions,
  4. int? quantity,
})

Implementation

Product({
  this.id,
  this.variantId,
  this.productOptions,
  this.quantity,
});