muteVideoAds method

Future<void> muteVideoAds(
  1. bool mute
)

Allows to mute video ads. mute: True to enable, false to disable ad muting.

Implementation

Future<void> muteVideoAds(bool mute) async {
  try {
    return await AatkitFlutterPluginPlatform.instance.muteVideoAds(mute);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}