setTimeNow method
년월일을 제외한 시간 (시, 분, 초, 밀리초, 마이크로초)를 현재 시간으로 설정
Implementation
DateTime setTimeNow() {
return DateTime(
year,
month,
day,
DateTime.now().hour,
DateTime.now().minute,
DateTime.now().second,
DateTime.now().millisecond,
DateTime.now().microsecond,
);
}