handleDeepLink method

  1. @override
Future<bool> handleDeepLink(
  1. Uri url
)
override

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);
  }
}