getDeeplinkData method

Future<String?> getDeeplinkData()
override

Implementation

Future<String?> getDeeplinkData() async {
  dynamic result;
  try {
    result = await instance.invokeMethod('getDeeplinking');
    deeplink = result;
  } on PlatformException catch (e) {
    deeplink = "Failed to Invoke: '${e.message}'.";
  }
  return result;
}