stop方法

void stop()

停止Stopwatch

在此调用之后,elapsedTicks计数将停止增加。如果Stopwatch当前没有运行,则调用此方法没有效果。

实现

void stop() {
  _stop ??= _now();
}