Checks if the current date falls within a range of start and end
start
end
bool isWithinRange(DateTime start, DateTime end) => isAfter(start) && isBefore(end) || isSameDate(start) || isSameDate(end);