Is your feature request related to a problem? Please describe.
I want to activate/open a dynamic link programmatically from the flutter app. The dynamic link is coming through Push Notifications inside a custom field.
Describe the solution you'd like
It would be nice to have a method when given a dynamic link, it will return the deeplink associated with it:
String url = 'some dynamic link comming from somewhere';
final PendingDynamicLinkData data = await FirebaseDynamicLinks.instance.getLink(url);
Additional context
I know that the Android Firebase SDK has a method similar to this. It just needs to be exposed inside flutter.