getMovies method
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,
);