DeepLinkCallback typedef

DeepLinkCallback = void Function(Uri uri, DeepLinkData? deepLinkData)

Callback for direct deep links (App Links, custom schemes)

Parameters:

  • uri: The URI that opened the app
  • deepLinkData: Parsed deep link data, null if parsing failed

Implementation

typedef DeepLinkCallback = void Function(Uri uri, DeepLinkData? deepLinkData);