isMorning property

bool get isMorning

Return true if is morning, false otherwise. Morning is defined as between 5am and 12pm.

Implementation

bool get isMorning => hour >= 6 && hour < 12;