DeepLinkDispatcher typedef

DeepLinkDispatcher = void Function(String route, Map<String, dynamic> queryParameters)

Signature for the function that actually routes an incoming deep link. Defaults to routeTo. Overridable in tests.

Implementation

typedef DeepLinkDispatcher =
    void Function(String route, Map<String, dynamic> queryParameters);