setInitializationAdUnitIds static method

void setInitializationAdUnitIds(
  1. List<String> adUnitIds
)

Sets a list of the ad units for the SDK to initialize only those networks. Should be set before initializing the SDK.

Implementation

static void setInitializationAdUnitIds(List<String> adUnitIds) {
  _methodChannel.invokeMethod('setInitializationAdUnitIds', {
    'value': adUnitIds,
  });
}