setSecond method

void setSecond(
  1. int second
)

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

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

Implementation

void setSecond(int second) => _values[Unit.s] = second;