resume method

void resume()

Resumes the measurement.

Implementation

void resume() {
  if (_watch.isRunning) {
    return;
  }

  _watch.start();
}