handleDeepLink method
Implementation
@override
Future<bool> handleDeepLink(Uri url) async {
try {
final handled = await methodChannel.invokeMethod<bool>('handleDeepLink', {
'url': url.toString(),
});
return handled ?? false;
} on PlatformException catch (e) {
throw LinkTrailException.fromPlatformException(e);
}
}