isLastStep method
Whether current step is the last one
Implementation
bool isLastStep(T tutorialId) {
final steps = getSteps(tutorialId);
return steps.isNotEmpty && _currentSteps[tutorialId] == steps.length - 1;
}
Whether current step is the last one
bool isLastStep(T tutorialId) {
final steps = getSteps(tutorialId);
return steps.isNotEmpty && _currentSteps[tutorialId] == steps.length - 1;
}