standardDeviation property

int get standardDeviation

Calculates the standard deviation of the integers in the iterable.

Implementation

int get standardDeviation =>
    NumbersHelper.standardDeviation(toList()).toInt();