RemoteCommandRunner constructor

RemoteCommandRunner({
  1. required ClientRuntime client,
  2. required String nodeId,
  3. ShellFamily? shellFamily,
})

Implementation

RemoteCommandRunner({
  required ClientRuntime client,
  required String nodeId,
  this.shellFamily,
}) : _client = client,
     _nodeId = nodeId;