You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Set domains for handling universal links in app
322
+
323
+
You can specify which domains should be handled as universal links inside the app instead of passing them to the system. Pass an array of domain strings. When a URL’s domain matches one of these domains, it will be delivered to your app as an in-app universal link.
### Get domains for handling universal links in app
334
+
335
+
You can retrieve the list of domains that are currently configured to handle universal links inside the app. Returns `null` if no domains have been set.
336
+
337
+
```dart
338
+
final List<String>? domains = await CleverPush.shared.getHandleUniversalLinksInAppForDomains();
339
+
```
340
+
341
+
**Note:** These methods are iOS-only. On Android they have no effect; `getHandleUniversalLinksInAppForDomains` returns `null`.
0 commit comments