refreshMovie method

Future<RadarrCommand> refreshMovie({
  1. List<int>? movieIds,
})

Handler for command (RefreshMovie).

Trigger a refresh / scan of library. If no movieIds are supplied, all movies are refreshed.

Optional Parameters:

  • movieIds: List of movie IDs for the movies in specific to refresh

Implementation

Future<RadarrCommand> refreshMovie({
    List<int>? movieIds,
}) async => _commandRefreshMovie(_client, movieIds: movieIds);