addDeepLink

fun addDeepLink(pattern: String, mapper: RouterDeepLinkMapper)

Adds a deeplink to the Trie

Parameters

pattern

The path the deep link should match. Any dynamic path segment can be prefixed with : to match any value. i.e. /devices/:deviceId. The value for :deviceId will be passed in the args parameter of mapper.

mapper

A function that passes in the arguments for any dynamic path segment and a KmpUrl and returns an IRoute.