findAll method

Response findAll()

Implementation

http.Response findAll() {
  List<Task>? tasks = _taskService?.findAll();
  return http.Response(jsonEncode(tasks), HttpStatus.ok);
}