startStopwatch method

void startStopwatch()

Implementation

void startStopwatch() {
  _stopwatch ??= Stopwatch();
  _stopwatch!.start();
}