getToWatch method

Future<List<Movie>> getToWatch()

Retrieves the list of to-watch movies.

Implementation

Future<List<Movie>> getToWatch() async {
  if (_isPodStorageEnabled && _podService != null) {
    return _podService!.getToWatch();
  }
  return _localService.getToWatch();
}