setMinute method

void setMinute(
  1. int minute
)

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

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

Implementation

void setMinute(int minute) => _values[Unit.min] = minute;