logCrossPromotionAndOpenStore method

void logCrossPromotionAndOpenStore(
  1. String appId,
  2. String campaign,
  3. Map? params
)

Use the following API to attribute the click and launch the app store's app page.

Implementation

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