previousStep method
Navigate to the previous step, returns false if already at the first step
Implementation
Future<bool> previousStep() async {
final actions = NavigationHubStateActions(navigationHubState);
return await actions.previousPage();
}