moveDown method

Future<void> moveDown(
  1. String queueId,
  2. String queueItemId
)

Move given queue item one place down in the queue.

Implementation

Future<void> moveDown(String queueId, String queueItemId) async {
  await moveItem(queueId, queueItemId, posShift: 1);
}