outlierRatio property
double
get
outlierRatio
Outlier average divided by clean average.
This is a measure of performance consistency. The higher this number the worse is jank when it happens. Smaller is better, with 1.0 being the perfect score. If average is zero, this value defaults to 1.0.
Implementation
double get outlierRatio => average > 0.0
? outlierAverage / average
: 1.0;