Problem constructor

Problem({
  1. Device? device,
  2. ProblemDetail? job,
  3. String? message,
  4. ExecutionResult? result,
  5. ProblemDetail? run,
  6. ProblemDetail? suite,
  7. ProblemDetail? test,
})

Implementation

Problem({
  this.device,
  this.job,
  this.message,
  this.result,
  this.run,
  this.suite,
  this.test,
});