showOfferwall static method

Future<void> showOfferwall({
  1. String? placementName,
})

Shows an Offerwall.

  • The Placement could be specified by placementName.

Native SDK Reference

  • Android: showOfferwall
  • iOS: showOfferwallWithViewController
    

Implementation

static Future<void> showOfferwall({String? placementName}) async {
  final args = OutgoingValueParser.showOfferwall(placementName);
  return _channel.invokeMethod('showOfferwall', args);
}