Move given queue item one place down in the queue.
Future<void> moveDown(String queueId, String queueItemId) async { await moveItem(queueId, queueItemId, posShift: 1); }