StockQuery constructor

StockQuery({
  1. int? page,
  2. int? amount,
  3. String? storeId,
  4. String? productId,
  5. StockType? type,
  6. StockStatus? stockType,
  7. StockOrderStatus? stockStatus,
})

Implementation

StockQuery({
  super.page,
  super.amount,
  this.storeId,
  this.productId,
  this.type,
  this.stockType,
  this.stockStatus,
});