volumeSet method
Send VOLUME SET command to given player.
Implementation
Future<void> volumeSet(String playerId, int volumeLevel) async {
await _client.sendCommand('players/cmd/volume_set', args: {'player_id': playerId, 'volume': volumeLevel});
}
Send VOLUME SET command to given player.
Future<void> volumeSet(String playerId, int volumeLevel) async {
await _client.sendCommand('players/cmd/volume_set', args: {'player_id': playerId, 'volume': volumeLevel});
}