stop method

Future<void> stop(
  1. String queueId
)

Send STOP command to given queue.

Implementation

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