setCurrentDeviceVolume method

Future<int?> setCurrentDeviceVolume(
  1. int type,
  2. int volume
)

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

参数:

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

volume 音量

返回值:

ITRTCDeviceInfo 设备信息,可以从中获取设备ID和设备名称

Implementation

Future<int?> setCurrentDeviceVolume(int type, int volume) {
  return _channel.invokeMethod(
      'setCurrentDeviceVolume', {"type": type, "volume": volume});
}