Returns true if this date is in the same hour as other.
true
other
bool isSameHour(DateTime other) => isSameDay(other) && hour == other.hour;