isUnlimited property

bool isUnlimited

Returns true if this interval is unbounded.

Implementation

bool get isUnlimited =>
    start.key == null &&
    start.value == null &&
    end.key == null &&
    end.value == null;