start method

void start()

Implementation

void start() {
  stop();
  _timer = Timer.periodic(_interval, (timer) {
    value++;
  });
}