mode property

  1. @override
double mode
override

Returns the mode, a value that appears most commonly in the set of values.

See https://en.wikipedia.org/wiki/Mode_(statistics).

Implementation

@override
double get mode => scale / (shape + 1);