timeIsZero property

bool timeIsZero

Whether the time of the date is zero/empty.

Implementation

bool get timeIsZero =>
    hour == 0 &&
    minute == 0 &&
    second == 0 &&
    millisecond == 0 &&
    microsecond == 0;