Vulnerability constructor

Vulnerability({
  1. Cve? cve,
  2. List<Cwe>? cwes,
  3. Package? fixedPackage,
  4. Package? offendingPackage,
  5. String? providerRiskScore,
  6. bool? reachable,
  7. SecurityBulletin? securityBulletin,
})

Implementation

Vulnerability({
  this.cve,
  this.cwes,
  this.fixedPackage,
  this.offendingPackage,
  this.providerRiskScore,
  this.reachable,
  this.securityBulletin,
});