skip method

Future<void> skip(
  1. String queueId,
  2. int seconds
)

Handle SKIP command for given queue.

Implementation

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