stop method

Future<void> stop(
  1. String playerId
)

Send STOP command to given player (directly).

Implementation

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