MoodleTasksRepository constructor
- MoodleTaskDatasource _tasks,
- AuthRepository _auth,
- MoodleCoursesRepository _courses
Provides all tasks from Moodle with the latest updates.
Implementation
MoodleTasksRepository(this._tasks, this._auth, this._courses) : super(AsyncValue.loading()) {
watchAsync(_auth);
watchAsync(_courses, setError: false, setLoading: false);
}