start method

void start()

Implementation

void start() {
  if (_timer != null) return;

  _timer = Timer.periodic(
    _currentDuration,
    _logOut,
  );
}