showOfferWall static method

Future<void> showOfferWall({
  1. required String title,
})

Implementation

static Future<void> showOfferWall({required String title}) async {
  final args = OfferWallArgParser.showOfferWall(title);
  return _channel.invokeMethod('showOfferWall', args);
}