CartQueryModel constructor

CartQueryModel({
  1. int? page,
  2. int? amount,
  3. String? shipmentMethodPriceId,
  4. bool? cashOnDelivery,
})

Implementation

CartQueryModel({
  super.page,
  super.amount,
  this.shipmentMethodPriceId,
  this.cashOnDelivery,
});