truncateToHour property

LocalTime Function(LocalTime) truncateToHour
getter/setter pair

Get a time adjuster to truncate the time to the hour, discarding fractional hours.

Implementation

static LocalTime Function(LocalTime) truncateToHour =
    (time) => LocalTime(time.hourOfDay, 0, 0);