Is there a way to pause and resume a timer ?
I want to create something like "worker time-keeping"
When he start the day call
timer.start()
When he takes a break call
timer.pause()
When he resumes a break call
timer.resume()
When he ends the day call
timer.stop()
And at the and I can see the total number of minutes/hours/whatever
.