reset method
void
reset()
Implementation
void reset() {
while (stack.length > 1) {
stack.removeLast();
}
stack.last.reset(false);
stopwatch?.reset();
}
void reset() {
while (stack.length > 1) {
stack.removeLast();
}
stack.last.reset(false);
stopwatch?.reset();
}