tasksWithStatus method
Returns a List of tasks with status.
Implementation
List<T> tasksWithStatus(AsyncTaskStatus status) =>
where((t) => t.status == status).toList();
Returns a List of tasks with status.
List<T> tasksWithStatus(AsyncTaskStatus status) =>
where((t) => t.status == status).toList();