getCurrentDeviceVolume method

Future<int?> getCurrentDeviceVolume(
  1. int type
)

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

参数:

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

返回值:

音量

Implementation

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