moveToSignUpPage method
Implementation
moveToSignUpPage(BuildContext context) async {
routeStack.add(PageView.signUpView);
routeStack.refresh();
printLogs("STACK ROUTES / ${routeStack.toJson()}");
await Navigator.of(context).push(
MaterialPageRoute(builder: (context) => SignUpScreen()),
);
return;
}