moveToOtpPage method

dynamic moveToOtpPage(
  1. BuildContext context
)

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;
}