loadBanner static method

void loadBanner(
  1. String adUnitId
)

Load a new banner ad. NOTE: The createBanner method loads the first banner ad and initiates an automated banner refresh process. You only need to call this method if you pause banner refresh.

Implementation

static void loadBanner(String adUnitId) {
  channel.invokeMethod('loadBanner', {
    'ad_unit_id': adUnitId,
  });
}