Returns true if this date is at least days days behind other.
true
days
other
bool isBehindByDays(DateTime other, int days) => difference(other).inDays <= -days;