ExecutionResult constructor

ExecutionResult({
  1. List<Command>? commands,
  2. String? documentationUrl,
  3. Resource? resource,
  4. String? rule,
  5. String? severity,
  6. String? type,
  7. ViolationDetails? violationDetails,
  8. String? violationMessage,
})

Implementation

ExecutionResult({
  this.commands,
  this.documentationUrl,
  this.resource,
  this.rule,
  this.severity,
  this.type,
  this.violationDetails,
  this.violationMessage,
});