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