isRunning method

bool isRunning()

Returns true if the stopwatch is playing and false if paused.

Implementation

bool isRunning() {
  return _running;
}