muteCall static method

Future<bool> muteCall(
  1. String uuid, {
  2. bool muted = true,
})

mute call initiated by user. Also could call Call.mute

Implementation

static Future<bool> muteCall(String uuid, {bool muted = true}) async {
  final res = await _methodChannel
      .invokeMethod(_methodChannelMuteCall, {"uuid": uuid, "muted": muted});
  return res as bool;
}