Vulnerability constructor

Vulnerability({
  1. Cve? cve,
  2. Package? fixedPackage,
  3. Package? offendingPackage,
  4. SecurityBulletin? securityBulletin,
})

Implementation

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