StaticKeyDeepLinkMatcher
class StaticKeyDeepLinkMatcher<T : Any>(val key: T, filters: List<DeepLinkMatcher.Filter<Any>>) : DeepLinkMatcher<T>
A DeepLinkMatcher that matches based on a list of Filter and if all filters match, returns the input key in the MatchResult.
T The Type of the navigation key associated with this deep link matcher.
Parameters
key
the navigation key associated with this deep link matcher
filters
the list of Filter to match with the DeepLinkRequest
Functions
Link copied to clipboard
Matches a DeepLinkRequest to a DeepLinkMatcher.