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