VulnerabilityNote constructor

VulnerabilityNote({
  1. String? advisoryPublishTime,
  2. double? cvssScore,
  3. CVSS? cvssV2,
  4. CVSSv3? cvssV3,
  5. CVSS? cvssV4,
  6. String? cvssVersion,
  7. List<Detail>? details,
  8. String? severity,
  9. String? sourceUpdateTime,
  10. List<WindowsDetail>? windowsDetails,
})

Implementation

VulnerabilityNote({
  this.advisoryPublishTime,
  this.cvssScore,
  this.cvssV2,
  this.cvssV3,
  this.cvssV4,
  this.cvssVersion,
  this.details,
  this.severity,
  this.sourceUpdateTime,
  this.windowsDetails,
});