MetricDataPoint constructor

MetricDataPoint({
  1. double? fpr,
  2. double? precision,
  3. double? threshold,
  4. double? tpr,
})

Implementation

MetricDataPoint({
  this.fpr,
  this.precision,
  this.threshold,
  this.tpr,
});