startTutorial method
void
startTutorial(
- T tutorialId
Starts the tutorial with the given tutorialId
.
Implementation
void startTutorial(T tutorialId) {
_validateTutorialId(tutorialId);
_currentSteps[tutorialId] = 0;
notifyListeners();
}