standardDeviation function Null safety

num standardDeviation(
  1. List values
)

Computes the standard deviation of the values in array.

Implementation

num standardDeviation(List<dynamic> values) {
  return math.sqrt(variance(values));
}