Prediction constructor

Prediction({
  1. Map<DetailsAttributes, String>? details,
  2. String? predictedLabel,
  3. Map<String, double>? predictedScores,
  4. double? predictedValue,
})

Implementation

Prediction({
  this.details,
  this.predictedLabel,
  this.predictedScores,
  this.predictedValue,
});