pause method

Future<void> pause(
  1. String playerId
)

Send PAUSE command to given player (directly).

Implementation

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