pause method

void pause()

Pauses the measurement.

Implementation

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

  _clock.stop();
}