StoreQueryModel constructor

StoreQueryModel({
  1. int? page,
  2. int? amount,
  3. String? typeId,
  4. String? city,
  5. String? district,
  6. String? neighborhood,
  7. String? search,
})

Implementation

StoreQueryModel({
  super.page,
  super.amount,
  this.typeId,
  this.city,
  this.district,
  this.neighborhood,
  this.search,
});