isBounded property

bool isBounded

Returns true, if this is interval has a definite upper and lower bound.

Implementation

bool get isBounded => lower.isBounded && upper.isBounded;