CartSideBodyDataModel constructor

CartSideBodyDataModel({
  1. String? itemId,
  2. String? productId,
  3. String? storeId,
  4. int? quantity,
  5. String? note,
  6. DateTime? startDate,
  7. DateTime? endDate,
})

Implementation

CartSideBodyDataModel({
  this.itemId,
  this.productId,
  this.storeId,
  this.quantity,
  this.note,
  this.startDate,
  this.endDate,
});