getApplicationPlayVolume method

Future<int?> getApplicationPlayVolume()

获取 Windows 系统音量合成器中当前进程的音量

注意:此接口只支持Windows平台

返回:

返回音量值,取值范围0~100

Implementation

Future<int?> getApplicationPlayVolume() {
  return _channel.invokeMethod('getApplicationPlayVolume');
}