copyWith method
Copy with a new shell environment
Implementation
ShellContext copyWith({ShellEnvironment? shellEnvironment}) {
return _ShellContextWithDelegate(
this,
shellEnvironment: shellEnvironment ?? this.shellEnvironment,
);
}
Copy with a new shell environment
ShellContext copyWith({ShellEnvironment? shellEnvironment}) {
return _ShellContextWithDelegate(
this,
shellEnvironment: shellEnvironment ?? this.shellEnvironment,
);
}