StockQueryModel constructor

StockQueryModel({
  1. int? page,
  2. int? amount,
  3. String? startDate,
  4. String? endDate,
  5. String? storeId,
})

Implementation

StockQueryModel({
  super.page,
  super.amount,
  this.startDate,
  this.endDate,
  this.storeId,
});