getWeChatAppId method
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";
}
}