Returns whether this StopWatch is currently running.
StopWatch sw; assert(!sw.running); sw.start(); assert(sw.running); sw.stop(); assert(!sw.running);
See Implementation
Returns whether this StopWatch is currently running.