SeveritySummary constructor

SeveritySummary({
  1. int? criticalCount,
  2. int? highCount,
  3. int? informationalCount,
  4. int? lowCount,
  5. int? mediumCount,
  6. int? unspecifiedCount,
})

Implementation

SeveritySummary({
  this.criticalCount,
  this.highCount,
  this.informationalCount,
  this.lowCount,
  this.mediumCount,
  this.unspecifiedCount,
});