getWeChatAppId method

  1. @override
Future<String> getWeChatAppId()
override

Implementation

@override
Future<String> getWeChatAppId() async {
  try {
    return await _configChannel.invokeMethod<String>(
            SuperfineSdkChannelMethods.getWeChatAppId) ??
        "";
  } catch (e) {
    print("Error fetching WeChat App ID: $e");
    return "Error";
  }
}