hour property

int get hour

The hour of the day.

Implementation

int get hour => _dateTime.hour;
set hour (int hour)

Implementation

set hour(int hour) => _dateTime = DateTime(0, 0, 0, hour, minute);