useDeepLinks method
Enable platform deep-link capture (Android App Links, iOS Universal Links, custom URL schemes, web URLs).
When enabled, Nylo subscribes to incoming URIs and routes them through the registered router. Pair with onIncomingLink to intercept URIs before routing.
fallbackRoute is navigated to when an incoming URI's path is not
registered. If omitted, the existing unknown-route handler is used.
nylo.useDeepLinks(fallbackRoute: HomePage.path);
Implementation
void useDeepLinks({String? fallbackRoute}) {
_useDeepLinks = true;
_deepLinkFallbackRoute = fallbackRoute;
}