stopMrecAutoRefresh static method

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

Pauses auto-refresh for the MREC.

Implementation

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