AuditFinding constructor

AuditFinding({
  1. String? checkName,
  2. String? findingId,
  3. DateTime? findingTime,
  4. bool? isSuppressed,
  5. NonCompliantResource? nonCompliantResource,
  6. String? reasonForNonCompliance,
  7. String? reasonForNonComplianceCode,
  8. List<RelatedResource>? relatedResources,
  9. AuditFindingSeverity? severity,
  10. String? taskId,
  11. DateTime? taskStartTime,
})

Implementation

AuditFinding({
  this.checkName,
  this.findingId,
  this.findingTime,
  this.isSuppressed,
  this.nonCompliantResource,
  this.reasonForNonCompliance,
  this.reasonForNonComplianceCode,
  this.relatedResources,
  this.severity,
  this.taskId,
  this.taskStartTime,
});