unRegisterRouteInterceptor method

void unRegisterRouteInterceptor(
  1. String pageName
)

Implementation

void unRegisterRouteInterceptor(String pageName) {
  if (!_routeInterceptorTable.containsKey(pageName)) return;
  _routeInterceptorTable.remove(pageName);
}