pause method

void pause()

Pauses the measurement.

Implementation

void pause() {
  if (!_watch.isRunning) {
    return;
  }

  _watch.stop();
}