void reset()

Resets the elapsed count to zero.

This method does not stop or start the Stopwatch.

Source

void reset() {
  _start = _stop ?? _now();
}