paywallClosed static method

Future<void> paywallClosed(
  1. ApphudPaywall paywall
)

Call this method when your paywall screen is dismissed without a purchase. This is required for A/B testing analysis.

Implementation

static Future<void> paywallClosed(ApphudPaywall paywall) =>
    _channel.invokeMethod(
      'paywallClosed',
      {
        'identifier': paywall.identifier,
        'placementIdentifier': paywall.placementIdentifier,
      },
    );