notifyAdRevenue method

  1. @protected
void notifyAdRevenue(
  1. Ad ad,
  2. double valueMicros,
  3. PrecisionType precision,
  4. String currencyCode,
)

Implementation

@protected
void notifyAdRevenue(Ad ad, double valueMicros, PrecisionType precision, String currencyCode) {
  LogUtils.d(
      "notifyAdRevenue => ad:${ad.runtimeType} valueMicros:$valueMicros currencyCode:$currencyCode precision:$precision");
  AdsManager.notifyAdRevenue(AdRevenueEvent(
    adsType,
    ad.adUnitId,
    precision,
    currencyCode,
    valueMicros,
    loadedAdapterResponseInfo: ad.responseInfo?.loadedAdapterResponseInfo,
  ));
}