ClassificationCategory constructor

ClassificationCategory({
  1. double? confidence,
  2. String? name,
  3. double? severity,
})

Implementation

ClassificationCategory({
  this.confidence,
  this.name,
  this.severity,
});