PaywallAttempted method
Implementation
@override
Future<void> PaywallAttempted(String paywall) async {
try {
await methodChannel
.invokeMethod('PaywallAttempted', {'paywall': paywall});
} on PlatformException catch (e) {
print("Failed to call PaywallAttempted: ${e.message}");
}
}