resume method
void
resume()
Resumes the measurement.
Implementation
void resume() {
if (_watch.isRunning) {
return;
}
_watch.start();
}
Resumes the measurement.
void resume() {
if (_watch.isRunning) {
return;
}
_watch.start();
}