AuditCheckDetails constructor

AuditCheckDetails({
  1. bool? checkCompliant,
  2. AuditCheckRunStatus? checkRunStatus,
  3. String? errorCode,
  4. String? message,
  5. int? nonCompliantResourcesCount,
  6. int? suppressedNonCompliantResourcesCount,
  7. int? totalResourcesCount,
})

Implementation

AuditCheckDetails({
  this.checkCompliant,
  this.checkRunStatus,
  this.errorCode,
  this.message,
  this.nonCompliantResourcesCount,
  this.suppressedNonCompliantResourcesCount,
  this.totalResourcesCount,
});