$CVSS constructor

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

Implementation

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