start方法
启动Stopwatch计时器。
已记录时间数单调递增。如果Stopwatch已经被停止,再次调用start将重新启动它,而不重置已记录时间数。
如果Stopwatch正在运行,调用start将没有任何效果。
实现
void start() {
int? stop = _stop;
if (stop != null) {
// (Re)start this stopwatch.
// Don't count the time while the stopwatch has been stopped.
_start += _now() - stop;
_stop = null;
}
}