ProcessException constructor

const ProcessException(
  1. String executable,
  2. List<String> arguments, [
  3. String message = "",
  4. int errorCode = 0,
])

Implementation

const ProcessException(
  this.executable,
  this.arguments, [
  this.message = "",
  this.errorCode = 0,
]);