reset method Null safety
Resets the elapsed count to zero.
This method does not stop or start the Stopwatch.
Implementation
void reset() {
_start = _stop ?? _now();
}
Resets the elapsed count to zero.
This method does not stop or start the Stopwatch.
void reset() {
_start = _stop ?? _now();
}