variance property

  1. @override
double variance
override

Returns the expected variance.

See https://en.wikipedia.org/wiki/Variance.

Implementation

@override
double get variance =>
    scale * scale * (gamma(1 + 2 / shape) - pow(gamma(1 + 1 / shape), 2));