at method

  1. @useResult
LocalDateTime at(
  1. LocalTime time
)

Returns a LocalDateTime on this date at the given time.

Implementation

@useResult LocalDateTime at(LocalTime time) => LocalDateTime(year, month, day, time.hour, time.minute, time.second, time.millisecond, time.microsecond);