requestOfferWall method

Future<void> requestOfferWall({
  1. required String placementId,
})

请求积分墙

Implementation

Future<void> requestOfferWall({required String placementId}) async {
  return _channel.invokeMethod("requestOfferWall", <String, dynamic>{
    'placementId': placementId,
  });
}