delete method
Handler for queue.
Remove an item from the queue and optionally blacklist it.
Required Parameters:
id
: Radarr queue record identifier
Optional Parameters:
removeFromClient
Remove the release from the download clientblacklist
Blacklist the release from being fetched again
Implementation
Future<void> delete({
required int id,
bool removeFromClient = false,
bool blacklist = false,
}) async => _commandDeleteQueue(
_client,
id: id,
removeFromClient: removeFromClient,
blacklist: blacklist,
);