Creates a Stopwatch in stopped state with a zero elapsed count.
The following example shows how to start a Stopwatch immediately after allocation.
var stopwatch = new Stopwatch()..start();
Source
Stopwatch() { if (_frequency == null) _initTicker(); }