setCurrentDeviceMute method

Future<int?> setCurrentDeviceMute(
  1. int type,
  2. bool mute
)

设置当前设备的静音状态(此API仅支持 macOS 和 Windows 平台)

参数:

type 设备类型,指定要获取的设备类型。更多信息,请参见 TXMediaDeviceType 的定义。type 只能是 TRTCCloudDef.TXMediaDeviceTypeMicTRTCCloudDef.TXMediaDeviceTypeSpeaker

mute 是否静音/冻结

返回值:

0:成功;负数:失败

Implementation

Future<int?> setCurrentDeviceMute(int type, bool mute) {
  return _channel
      .invokeMethod('setCurrentDeviceMute', {"type": type, "mute": mute});
}