ShellException constructor
ShellException(
- String msg,
- ProcessResult? result, {
- ProcessCmd? command,
Shell exception @deprecated
Implementation
factory ShellException(
String msg,
ProcessResult? result, {
ProcessCmd? command,
}) => _ShellException(
message: msg,
shellProcessResult: result?.unwrapShellProcessResult(),
command: command,
shellCommand: command,
);