getDynamicLink method

  1. @Deprecated('Note: Firebase Dynamic Links is deprecated and the service will shut down on August 25, 2025. ' 'Please see our Dynamic Links Deprecation FAQ documentation > for guidance on alternative solutions and migration options: ' 'https://firebase.google.com/support/dynamic-links-faq')
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

@Deprecated(
    'Note: Firebase Dynamic Links is deprecated and the service will shut down on August 25, 2025. '
    'Please see our Dynamic Links Deprecation FAQ documentation > for guidance on alternative solutions and migration options: '
    'https://firebase.google.com/support/dynamic-links-faq')
Future<PendingDynamicLinkData?> getDynamicLink(Uri url) async {
  return _delegate.getDynamicLink(url);
}