Vulnerability constructor

Vulnerability({
  1. double? cvssScore,
  2. CVSSv3? cvssV3,
  3. List<Detail>? details,
  4. String? severity,
  5. String? sourceUpdateTime,
  6. List<WindowsDetail>? windowsDetails,
})

Implementation

Vulnerability({
  this.cvssScore,
  this.cvssV3,
  this.details,
  this.severity,
  this.sourceUpdateTime,
  this.windowsDetails,
});