setHour method

void setHour(
  1. int hour
)

Sets the hour, it won't update the internal _time.

You must call finished method to apply all changes. Usually used in chain setting (Cascade).

Implementation

void setHour(int hour) => _values[Unit.h] = hour;