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