CancelTasksQuery constructor

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

Implementation

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