lowerBound property

  1. @override
  2. @nonVirtual
double lowerBound
override

Returns the lower boundary of the distribution.

Implementation

@override
@nonVirtual
double get lowerBound => support.lower.isBounded
    ? support.lower.endpoint
    : double.negativeInfinity;