ShellError constructor

const ShellError({
  1. required int code,
  2. String stdout = '',
  3. String stderr = '',
  4. bool interrupted = false,
  5. String? message,
})

Implementation

const ShellError({
  required this.code,
  this.stdout = '',
  this.stderr = '',
  this.interrupted = false,
  this.message,
});