notifyRTBWin method

dynamic notifyRTBWin(
  1. double winPrice,
  2. double secPrice, {
  3. String? winAdnId,
})

上报竞胜

Implementation

notifyRTBWin(double winPrice, double secPrice,{String? winAdnId}) {
  final Map<String, dynamic> args = {
    adWinPrice: winPrice,
    adSecPrice: secPrice,
    adWinAdnId: winAdnId
  };
  _channel?.invokeMethod(AMPSAdSdkMethodNames.splashNotifyRTBWin, args);
}