OrderQuery constructor

OrderQuery({
  1. int? page,
  2. int? amount,
  3. String? storeId,
  4. OrderSort? sort,
  5. OrderStatus? orderStatus,
  6. bool? isPaid,
  7. bool? isTest,
})

Implementation

OrderQuery({
  super.page,
  super.amount,
  this.storeId,
  this.sort,
  this.orderStatus,
  this.isPaid,
  this.isTest,
});