Stopwatch constructor
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();
    Implementation
Stopwatch() {
  if (_frequency == null) _initTicker();
}