PaywallAttempted method

  1. @override
Future<void> PaywallAttempted(
  1. String paywall
)
override

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}");
  }
}