currentStepData property
GuideStep?
get
currentStepData
Returns the current step data, or null if no steps are available.
Implementation
GuideStep? get currentStepData =>
_currentStep < steps.length ? steps[_currentStep] : null;