ProcessExitCodeException constructor

const ProcessExitCodeException(
  1. int exitCode,
  2. String name,
  3. List<String> stdout,
  4. List<String> stderr,
)

Implementation

const ProcessExitCodeException(
    int exitCode, this.name, this.stdout, this.stderr)
    : super(
          message: 'process failed with exit code $exitCode',
          exitCode: exitCode);