logCrossPromotionImpression method

void logCrossPromotionImpression(
  1. String appId,
  2. String campaign,
  3. Map? data
)

To attribute an impression use the following API call. Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard.

Implementation

void logCrossPromotionImpression(String appId, String campaign, Map? data) {
  _methodChannel.invokeMethod("logCrossPromotionImpression",
      {'appId': appId, 'campaign': campaign, 'data': data});
}