Cart constructor

Cart(
  1. String? id,
  2. List product,
  3. int quantity
)

Implementation

Cart(this.id, this.product, this.quantity);