start method
Start the tour from the beginning
Implementation
Future<void> start() async {
if (startDelay != null) {
await Future.delayed(startDelay!);
}
_currentStepIndex = 0;
_isRunning = true;
_showStep();
}
Start the tour from the beginning
Future<void> start() async {
if (startDelay != null) {
await Future.delayed(startDelay!);
}
_currentStepIndex = 0;
_isRunning = true;
_showStep();
}