logInAppPurchase method
Log an in-app purchase from the platform store
Implementation
@override
Future<void> logInAppPurchase(String transactionId) async {
try {
await methodChannel.invokeMethod('logInAppPurchase', {
'transactionId': transactionId,
});
} on PlatformException catch (e) {
throw GrovsException(
e.message ?? 'Failed to log in-app purchase',
code: e.code,
);
}
}