queueReorderItems method
override
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
@override
Future<void> queueReorderItems({
required List<int> itemsIds,
required int? beforeItemWithId,
}) {
return _channel.invokeMethod('queueReorderItems', {
'itemsIds': itemsIds,
'beforeItemWithId': beforeItemWithId,
});
}