VulnerabilityNote constructor

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

Implementation

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