queueReorderItems abstract method
Reorders items in the queue.
itemsIds - List of IDs of the items to reorder.
beforeItemWithId - The ID of the item before which the reordered items will be placed.
If null, the items will be placed at the end of the queue.
Implementation
Future<void> queueReorderItems({
required List<int> itemsIds,
required int? beforeItemWithId,
});