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