startTutorial method

void startTutorial(
  1. T tutorialId
)

Starts the tutorial with the given tutorialId.

Implementation

void startTutorial(T tutorialId) {
  _validateTutorialId(tutorialId);
  _currentSteps[tutorialId] = 0;
  notifyListeners();
}