tasksForWorker method
Tasks associated with workerId, most-recently-updated first.
Implementation
List<TaskInfo> tasksForWorker(String workerId, {TaskState? state}) => tasks(
worker: workerId,
state: state,
limit: maxTasks,
);