Future<int> getPlayoutVolume()
获取当前本地播放音量
返回
- 其他:方法调用成功,返回当前本地播放音量
- <0:方法调用失败,详见 ErrorCode。
Implementation
<int> getPlayoutVolume() {
return _methodChannel.invokeMethod("getPlayoutVolume");
}
Future
最近更新时间:2022-09-20 05:17:40
Future<int> getPlayoutVolume()
获取当前本地播放音量
返回
<int> getPlayoutVolume() {
return _methodChannel.invokeMethod("getPlayoutVolume");
}
Future