play method

Future<void> play(
  1. String queueId
)

Send PLAY command to given queue.

Implementation

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