Cart constructor

Cart({
  1. String? id,
  2. required String uuid,
  3. required String shopId,
  4. required List<SelectedProduct> selectedProducts,
  5. String? description,
  6. required double price,
})

Implementation

Cart(
    {this.id,
    required this.uuid,
    required this.shopId,
    required this.selectedProducts,
    this.description,
    required this.price});