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});
}