play method

void play()

Starts the stopwatch. It will now count upward in increments of 1 millisecond.

Implementation

void play() {
  if (!_running) {
    _running = true;
    _orig = DateTime.now().toUtc();
  }
}