deleteItem method
Delete item (by id or index) from the queue.
Implementation
Future<void> deleteItem(String queueId, dynamic itemIdOrIndex) async {
await _client.sendCommand(
'player_queues/delete_item',
args: {'queue_id': queueId, 'item_id_or_index': itemIdOrIndex},
);
}