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