Query constructor

Query({
  1. int? limit = 50,
  2. List<WhereFilter>? where,
  3. List<OrderFilter>? orderBy,
  4. String? startAfter,
  5. String? startAt,
})

Implementation

Query(
    {this.limit = 50,
    this.where,
    this.orderBy,
    this.startAfter,
    this.startAt});