currentStep property

TourStep? get currentStep

Current step being displayed

Implementation

TourStep? get currentStep =>
    _isRunning && _currentStepIndex < steps.length
        ? steps[_currentStepIndex]
        : null;