notifyWin method

Future<void> notifyWin({
  1. double? secPrice,
  2. String? secBidder,
})

Implementation

Future<void> notifyWin({double? secPrice, String? secBidder}) async {
  _bigoAd._invokeAdEvent("notifyWin",
      <dynamic, dynamic>{'secPrice': secPrice, 'secBidder': secBidder});
}