getDynamicLink method

Future<PendingDynamicLinkData?> getDynamicLink(
  1. Uri url
)

Determine if the app has a pending dynamic link and provide access to the dynamic link parameters. A pending dynamic link may have been previously captured when a user clicked on a dynamic link, or may be present in the dynamicLinkUri parameter. If both are present, the previously captured dynamic link will take precedence. The captured data will be removed after first access.

Implementation

Future<PendingDynamicLinkData?> getDynamicLink(Uri url) async {
  return _delegate.getDynamicLink(url);
}