at method
Combines this LocalDate with the given LocalTime
into a single LocalDateTime.
Fluent alternative to operator+().
time: The time to combine with this date.
Returns: The LocalDateTime representation of the given time on this date
Implementation
LocalDateTime at(LocalTime time) => LocalDateTime.localDateAtTime(this, time);