start method

void start()

开始

Implementation

void start() {
  if (started) return;
  _timer = Timer.periodic(_duration, _callback);
  _statusChanged?.call(this);
}