showAd method

Future<void> showAd([
  1. String placementId = ""
])

Implementation

Future<void> showAd([String placementId = ""]) async {
  Map<String, Object> args = <String, Object>{};
  args.putIfAbsent("placementId", () => placementId);
  await _channel.invokeMethod('showAd', args);
}