Checks if this date is within a range (inclusive).
bool isWithin(Hora start, Hora end) => !isBefore(start) && !isAfter(end);