AppMetricaExternalAttribution.adjust constructor

AppMetricaExternalAttribution.adjust({
  1. String? trackerToken,
  2. String? trackerName,
  3. String? network,
  4. String? campaign,
  5. String? adgroup,
  6. String? creative,
  7. String? clickLabel,
  8. String? adid,
  9. String? costType,
  10. num? costAmount,
  11. String? costCurrency,
  12. String? fbInstallReferrer,
})

Creates Adjust implementation of AppMetricaExternalAttribution.

Implementation

AppMetricaExternalAttribution.adjust({
  String? trackerToken,
  String? trackerName,
  String? network,
  String? campaign,
  String? adgroup,
  String? creative,
  String? clickLabel,
  String? adid,
  String? costType,
  num? costAmount,
  String? costCurrency,
  String? fbInstallReferrer
})
    : _source = "adjust",
      _data = {
        "trackerToken": trackerToken,
        "trackerName": trackerName,
        "network": network,
        "campaign": campaign,
        "adgroup": adgroup,
        "creative": creative,
        "clickLabel": clickLabel,
        "adid": adid,
        "costType": costType,
        "costAmount": costAmount,
        "costCurrency": costCurrency,
        "fbInstallReferrer": fbInstallReferrer,
      };