resume method
void
resume()
Implementation
void resume() {
if (!isRepeat && interval - stopwatch.elapsedMilliseconds <= 0) {
_run();
}
start();
}
void resume() {
if (!isRepeat && interval - stopwatch.elapsedMilliseconds <= 0) {
_run();
}
start();
}