CVSSv3 constructor

CVSSv3({
  1. String? attackComplexity,
  2. String? attackVector,
  3. String? availabilityImpact,
  4. double? baseScore,
  5. String? confidentialityImpact,
  6. double? exploitabilityScore,
  7. double? impactScore,
  8. String? integrityImpact,
  9. String? privilegesRequired,
  10. String? scope,
  11. String? userInteraction,
})

Implementation

CVSSv3({
  this.attackComplexity,
  this.attackVector,
  this.availabilityImpact,
  this.baseScore,
  this.confidentialityImpact,
  this.exploitabilityScore,
  this.impactScore,
  this.integrityImpact,
  this.privilegesRequired,
  this.scope,
  this.userInteraction,
});