shuffle method

Future<void> shuffle(
  1. String queueId,
  2. bool shuffleEnabled
)

Configure shuffle mode on the queue.

Implementation

Future<void> shuffle(String queueId, bool shuffleEnabled) async {
  await _client.sendCommand('player_queues/shuffle', args: {'queue_id': queueId, 'shuffle_enabled': shuffleEnabled});
}