Return true if the date is behind of other by days, false otherwise.
true
other
days
false
bool isBehindByDays(DateTime other, int days) => difference(other).inDays <= -days;