deleteQueue method

Future<void> deleteQueue({
  1. required int id,
  2. bool? blacklist,
})

Handler for queue.

Deletes an item from the queue and download client..

Implementation

Future<void> deleteQueue({required int id, bool? blacklist}) async =>
    _commandDeleteQueue(_client, id: id, blacklist: blacklist);