getCurrentStep method

int getCurrentStep(
  1. T tutorialId
)

Gets current step index (-1 = not started)

Implementation

int getCurrentStep(T tutorialId) => _currentSteps[tutorialId] ??= -1;