reset method

  1. @override
void reset()
override

Resets the clock.

Please note that the clock is not stopped after reset. You should call stop if you want to stop the clock.

Implementation

@override
void reset() {
  _stopwatch.reset();
}