isSignificant property

bool isSignificant

If true, the risk change is statistically significant.

The "null value" (statistically speaking) is 1. If the confidence interval doesn't include 1, then the change is statistically significant.

Implementation

bool get isSignificant => lower > 1 || upper < 1;