D4rtTestResult constructor

const D4rtTestResult({
  1. required bool timedOut,
  2. List<String> exceptions = const [],
  3. String processOutput = '',
  4. String processError = '',
  5. int exitCode = 0,
})

Implementation

const D4rtTestResult({
  required this.timedOut,
  this.exceptions = const [],
  this.processOutput = '',
  this.processError = '',
  this.exitCode = 0,
});