reset method Null safety

void reset()

Resets the elapsed count to zero.

This method does not stop or start the Stopwatch.

Implementation

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