moviesSearch method

Future<RadarrCommand> moviesSearch({
  1. required List<int> movieIds,
})

Handler for command (MoviesSearch).

Triggers a search for the given list of movies.

Required Parameters:

  • movieIds: List of movie IDs to search for.

Implementation

Future<RadarrCommand> moviesSearch({
    required List<int> movieIds,
}) async => _commandMoviesSearch(_client, movieIds: movieIds);