start method

Future<void> start()

Start the tour from the beginning

Implementation

Future<void> start() async {
  if (startDelay != null) {
    await Future.delayed(startDelay!);
  }
  _currentStepIndex = 0;
  _isRunning = true;
  _showStep();
}