ShellException constructor

ShellException(
  1. String msg,
  2. ProcessResult? result, {
  3. ProcessCmd? command,
})

Shell exception @deprecated

Implementation

factory ShellException(
  String msg,
  ProcessResult? result, {
  ProcessCmd? command,
}) => _ShellException(
  message: msg,
  shellProcessResult: result?.unwrapShellProcessResult(),
  command: command,
  shellCommand: command,
);