ShellException.process constructor
ShellException.process(
- String msg, {
- ShellProcessResult? result,
- ShellCommand? command,
- ProcessCmd? processCmd,
Shell exception
Implementation
factory ShellException.process(
String msg, {
ShellProcessResult? result,
// The command parsed
ShellCommand? command,
// The executed command
ProcessCmd? processCmd,
}) => _ShellException(
message: msg,
shellProcessResult: result,
shellCommand: command,
command: processCmd,
);