TaskQueryOptions constructor

TaskQueryOptions({
  1. int limit = 20,
  2. String orderBy = 'createdAt',
  3. bool orderByDescending = true,
})

Implementation

TaskQueryOptions({
  this.limit = 20,
  this.orderBy = 'createdAt',
  this.orderByDescending = true,
});