setMRecExtraParameter static method

void setMRecExtraParameter(
  1. String adUnitId,
  2. String key,
  3. String value
)

Sets an extra parameter to the MREC with the specified adUnitId.

Implementation

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