currentStep property
int
get
currentStep
The current step index (0-based)
Implementation
int get currentStep {
final data = Backpack.instance.read('${navigationHubState}_current_tab');
return (data is int) ? data : 0;
}