getAudioMixingPosition method
ZH
获取当前混音进度, 仅供会议用户或直播主播用户使用 @return 0: 成功, 非0: 失败
EN
Get current mixing progress For meeting hosts or live streamers only @return 0: Success, Non-zero: Failed
Implementation
Future<double> getAudioMixingPosition() async {
double code = await _channel.invokeMethod('getAudioMixingPosition') ?? -1;
return code;
}