Query constructor

Query({
  1. String orderByValue = '\$key',
  2. String startAtValue = "",
  3. String endAtValue = "",
  4. int limitToLastValue = 0,
  5. int limitToFirstValue = 0,
  6. String? timeoutValue,
})

Implementation

Query({
  this.orderByValue = '\$key',
  this.startAtValue = "",
  this.endAtValue = "",
  this.limitToLastValue = 0,
  this.limitToFirstValue = 0,
  this.timeoutValue,
});