findAll method

List<Task>? findAll()

Implementation

List<Task>? findAll() {
  return _taskRepository?.findAllEntities().map((e) => e as Task).toList();
}