QueryModel constructor

QueryModel({
  1. int? page,
  2. int? amount,
  3. Status? status,
})

Creates a new instance of QueryModel.

The page and amount parameters can be used to specify the page number and amount for the query. If they are not provided, they will default to null.

Implementation

QueryModel({
  this.page,
  this.amount,
  this.status,
});