showBanner static method

void showBanner({
  1. required String adUnitId,
})

Shows the banner. If not yet created, queues the request.

Implementation

static void showBanner({required String adUnitId}) {
  _methodChannel.invokeMethod('showBanner', {'adUnitId': adUnitId});
}