this.deeplinks
  .routeWithNavController(this.navController, {
    '/about-us': AboutPage,
    '/products/:productId': ProductPage,
  })
  .subscribe(
    (match) => {
      
      
      
      console.log('Successfully matched route', match);
    },
    (nomatch) => {
      
      console.error("Got a deeplink that didn't match", nomatch);
    }
  );