timeOfDay property

Duration get timeOfDay

Returns only the time.

Implementation

Duration get timeOfDay => Duration(
      hours: hour,
      minutes: minute,
      seconds: second,
      milliseconds: millisecond,
      microseconds: microsecond,
    );