AnomalyScore constructor

AnomalyScore({
  1. required double currentScore,
  2. required double maxScore,
})

Implementation

AnomalyScore({
  required this.currentScore,
  required this.maxScore,
});