paywallShown static method

Future<void> paywallShown(
  1. ApphudPaywall paywall
)

Call this method when your paywall screen is displayed to the user. This is required for A/B testing analysis.

Implementation

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