AppsFlyerSDK / appsflyer-flutter-plugin

Flutter Plugin for AppsFlyer SDK
MIT License
142 stars 111 forks source link

Maps deep_link_sub1 #227

Closed esentis closed 1 year ago

esentis commented 1 year ago

Closes #226

pazlavi commented 1 year ago

There is no getter for this property by design. For extracting this field you should use the getStringValue method.

    _appsflyerSdk?.onDeepLinking((DeepLinkResult dp) {
      var deepLinkSub1 = dp.deepLink?.getStringValue("deep_link_sub1");
    });

You can find more details about how to work with the DeepLinkResult object here