userSetCacheAd function

dynamic userSetCacheAd(
  1. String purchasesmb,
  2. double dollar
)

Implementation

userSetCacheAd(String purchasesmb, double dollar) {
  AdjustEvent purchaseEvent = AdjustEvent(purchasesmb);
  purchaseEvent.setRevenue(dollar, 'USD');
  Adjust.trackEvent(purchaseEvent);
}