Shell.copy constructor

Shell.copy(
  1. Shell other
)

Implementation

factory Shell.copy(Shell other) {
  return new Shell(
      environment: other.environment,
      processManager: other.processManager,
      includeParentEnvironment: other.includeParentEnvironment,
      workingDirectory: other.workingDirectory,
      sudo: other.sudo,
      runInShell: other.runInShell,
      username: other.username,
      password: other.password);
}