getDeeplinkData method
void
getDeeplinkData()
Implementation
void getDeeplinkData() async {
try {
final String result = await instance.invokeMethod('getDeeplinking');
deeplink = result;
} on PlatformException catch (e) {
deeplink = "Failed to Invoke: '${e.message}'.";
}
}