getQQAppId method

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

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