unRegisterDeepLinkCallbackEvents method

  1. @override
Future<void> unRegisterDeepLinkCallbackEvents()
override

Implementation

@override
Future<void> unRegisterDeepLinkCallbackEvents() async {
  await _configChannel.invokeMethod<bool>(
      SuperfineSdkChannelMethods.unRegisterDeepLinkListener);
  await _deepLinkSubscription?.cancel();
  _deepLinkSubscription = null;
}