startOfDay property

Time get startOfDay

Returns a new Time instance representing the start of the day (00:00:00.000000).

Implementation

Time get startOfDay => Time(_dateTime.copyWith(
    hour: 0, minute: 0, second: 0, millisecond: 0, microsecond: 0));