ExecutionResult constructor

ExecutionResult({
  1. String? documentationUrl,
  2. Resource? resource,
  3. String? rule,
  4. String? severity,
  5. ViolationDetails? violationDetails,
  6. String? violationMessage,
})

Implementation

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