nextStep method

Future<bool> nextStep()

Navigate to the next step, returns false if already at the last step

Implementation

Future<bool> nextStep() async {
  final actions = NavigationHubStateActions(navigationHubState);
  return await actions.nextPage();
}