RemoteWorkspace constructor
RemoteWorkspace({
- required ClientRuntime client,
- required String nodeId,
- required String rootPath,
- ShellFamily? shellFamily,
Implementation
RemoteWorkspace({
required ClientRuntime client,
required String nodeId,
required this.rootPath,
ShellFamily? shellFamily,
}) : _client = client,
_nodeId = nodeId,
_shellFamily = shellFamily,
commandRunner = RemoteCommandRunner(
client: client,
nodeId: nodeId,
shellFamily: shellFamily,
);