muteVideosIfCallsMuted static method

Future<void> muteVideosIfCallsMuted(
  1. bool value
)

Mute video if true for Android platform (false by default).

Implementation

static Future<void> muteVideosIfCallsMuted(bool value) async {
  if (Platform.isAndroid) {
    _channel.invokeMethod('muteVideosIfCallsMuted', {'value': value});
  }
}