IsolateResponse constructor

const IsolateResponse({
  1. required int id,
  2. String stdout = '',
  3. String stderr = '',
  4. int exitCode = -1,
  5. String? error,
})

Implementation

const IsolateResponse({
  required this.id,
  this.stdout = '',
  this.stderr = '',
  this.exitCode = -1,
  this.error,
});