loadMREC static method

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

Loads a new MREC ad.

Note: The createMREC method automatically loads the first MREC ad and starts auto-refresh. You only need to call this method if you paused the refresh.

Implementation

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