clear method

Future<void> clear(
  1. String queueId
)

Send CLEAR QUEUE command to given queue.

Implementation

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