Get a time adjuster to truncate the time to the hour, discarding fractional hours.
static LocalTime Function(LocalTime) truncateToHour = (time) => LocalTime(time.hourOfDay, 0, 0);