getDeepLink static method

Future getDeepLink()

Implementation

static Future<dynamic> getDeepLink() async {
  try {
    var data = await _channel.invokeMethod('getDeepLink');
    if(data==null) return null;
    final Map<String, dynamic> result = new Map.from(data);
    return result;
  } catch(e) {
    debugPrint("Error retrieving deferred deep link: $e");
    return null;
  }
}