ExecResult constructor

const ExecResult({
  1. required int code,
  2. String stdout = '',
  3. String stderr = '',
  4. String? error,
})

Implementation

const ExecResult({
  required this.code,
  this.stdout = '',
  this.stderr = '',
  this.error,
});