getMovies method

Future<List<RadarrMovie>> getMovies({
  1. bool? includeRecommendations,
})

Handler for impostlist/movie.

Returns a list of movies from the import list.

Optional Parameters:

  • includeRecommendations: Include recommendations from Radarr

Implementation

Future<List<RadarrMovie>> getMovies({bool? includeRecommendations}) async =>
    _commandGetImportListMovies(
      _client,
      includeRecommendations: includeRecommendations,
    );