setMutedCall method

Future<void> setMutedCall(
  1. String uuid,
  2. bool mute
)

Switch the mic on/off.

uuid of the current call. set mute to true or false

Implementation

Future<void> setMutedCall(String uuid, bool mute) async {
  if (!Platform.isIOS) {
    return;
  }
  await _channel.invokeMethod<void>('setMutedCall', {
    'uuid': uuid,
    'mute': mute,
  });
}