Retrieves the list of to-watch movies.
Future<List<Movie>> getToWatch() async { if (_isPodStorageEnabled && _podService != null) { return _podService!.getToWatch(); } return _localService.getToWatch(); }