Vulnerability constructor

Vulnerability({
  1. required String id,
  2. List<Cvss>? cvss,
  3. List<String>? referenceUrls,
  4. List<String>? relatedVulnerabilities,
  5. VulnerabilityVendor? vendor,
  6. List<SoftwarePackage>? vulnerablePackages,
})

Implementation

Vulnerability({
  required this.id,
  this.cvss,
  this.referenceUrls,
  this.relatedVulnerabilities,
  this.vendor,
  this.vulnerablePackages,
});