TimeOfDay.fromDateTime constructor Null safety

TimeOfDay.fromDateTime(
  1. DateTime time
)

Creates a time of day based on the given time.

The hour is set to the time's hour and the minute is set to the time's minute in the timezone of the given DateTime.

Implementation

TimeOfDay.fromDateTime(DateTime time)
  : hour = time.hour,
    minute = time.minute;