setMuted static method

void setMuted(
  1. bool muted
)

Sets whether to begin video ads in a muted state or not.

Note that this functionality is not available for all networks.

Mute Audio

Implementation

static void setMuted(bool muted) {
  channel.invokeMethod('setMuted', {
    'value': muted,
  });
}