TasksQuery constructor

const TasksQuery({
  1. int? limit,
  2. int? from,
  3. DateTime? beforeEnqueuedAt,
  4. DateTime? afterEnqueuedAt,
  5. DateTime? beforeStartedAt,
  6. DateTime? afterStartedAt,
  7. DateTime? beforeFinishedAt,
  8. DateTime? afterFinishedAt,
  9. List<int> canceledBy = const [],
  10. List<int> uids = const [],
  11. List<String> indexUids = const [],
  12. List<String> statuses = const [],
  13. List<String> types = const [],
})

Implementation

const TasksQuery({
  this.limit,
  this.from,
  this.beforeEnqueuedAt,
  this.afterEnqueuedAt,
  this.beforeStartedAt,
  this.afterStartedAt,
  this.beforeFinishedAt,
  this.afterFinishedAt,
  this.canceledBy = const [],
  this.uids = const [],
  this.indexUids = const [],
  this.statuses = const [],
  this.types = const [],
});