volumeUp method

Future<void> volumeUp(
  1. String playerId
)

Send VOLUME UP command to given player.

Implementation

Future<void> volumeUp(String playerId) async {
  await _client.sendCommand('players/cmd/volume_up', args: {'player_id': playerId});
}