CartBodyDataModel constructor

CartBodyDataModel({
  1. String? itemId,
  2. String? productId,
  3. String? storeId,
  4. int? quantity,
  5. String? note,
  6. DateTime? startDate,
  7. DateTime? endDate,
  8. List<CartSideBodyDataModel>? sides,
  9. String? deliveryDate,
})

Implementation

CartBodyDataModel({
  this.itemId,
  this.productId,
  this.storeId,
  this.quantity,
  this.note,
  this.startDate,
  this.endDate,
  this.sides,
  this.deliveryDate,
});