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