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