toLocalTime method

LocalTime toLocalTime()

Returns the time component only.

Example:

final dt = LocalDateTime.of(2024, 6, 27, 14, 30);
final time = dt.toLocalTime();

Implementation

LocalTime toLocalTime() => time;