repeat method
Configure repeat mode on the queue.
Implementation
Future<void> repeat(String queueId, RepeatMode repeatMode) async {
await _client.sendCommand('player_queues/repeat', args: {'queue_id': queueId, 'repeat_mode': repeatMode.value});
}
Configure repeat mode on the queue.
Future<void> repeat(String queueId, RepeatMode repeatMode) async {
await _client.sendCommand('player_queues/repeat', args: {'queue_id': queueId, 'repeat_mode': repeatMode.value});
}