setCustomAdOnShow method

Future<bool> setCustomAdOnShow({
  1. String? cpm,
})

通知SDK自定义广告已开始展示 cpm 广告CPM,传'custom'表示自定义广告

Implementation

Future<bool> setCustomAdOnShow({String? cpm}) async {
  _ensureReady();
  return await PangrowthContent.setCustomAdOnShow(
    _playerId!,
    cpm: cpm ?? '0',
  );
}