repeat method

Future<void> repeat(
  1. String queueId,
  2. RepeatMode repeatMode
)

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});
}