Severity constructor

Severity({
  1. SeverityLabel? label,
  2. int? normalized,
  3. String? original,
  4. double? product,
})

Implementation

Severity({
  this.label,
  this.normalized,
  this.original,
  this.product,
});