Confidence class

Utility class for confidence calculations.

Constructors

Confidence()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

average(List<double> scores) double
Calculate average confidence.
clamp(double score) double
Ensure score is within valid range.
minimum(List<double> scores) double
Calculate minimum confidence (used for derived metrics).
weightedAverage(List<double> scores, List<double> weights) double
Calculate weighted average confidence.
withDecay({required double baseConfidence, required Duration age, required Duration halfLife}) double
Apply decay based on age (for time-sensitive confidence).