getDeepLinkData method

Future getDeepLinkData(
  1. NotificationCallback callback,
  2. String url
)

Implementation

Future<dynamic> getDeepLinkData(
    NotificationCallback callback, String url) async {
  var deeplinkData = await methodChannel.invokeMethod('getDeepLinkData', url);
  callback(deeplinkData as String);
}