logIAPReceiptRoku method
Implementation
@override
Future<void> logIAPReceiptRoku(String transactionId) async {
try {
await _logRevenueChannel.invokeMethod(
SuperfineSdkChannelMethods.logIAPReceiptRoku,
{'transactionId': transactionId});
} catch (e) {
print("Error logging IAP receipt for Roku: $e");
}
}