logWeChatLink method

  1. @override
Future<void> logWeChatLink(
  1. String openId
)
override

Implementation

@override
Future<void> logWeChatLink(String openId) async {
  try {
    await _logLinkingChannel.invokeMethod(
        SuperfineSdkChannelMethods.logWeChatLink, {'openId': openId});
  } catch (e) {
    print("Error linking WeChat account: $e");
  }
}