setDeepLinkHandler static method

void setDeepLinkHandler(
  1. FutureOr<void> handler(
    1. String deepLink
    )?
)

Replaces the runtime deep-link handler. Pass null for SDK launching.

Implementation

static void setDeepLinkHandler(
  FutureOr<void> Function(String deepLink)? handler,
) {
  DigiaInstance.instance.setDeepLinkHandler(handler);
}