enableAudioOutput static method
开启/关闭音频输出。
-
channelId频道标识符,不能为空。 -
enable开启/关闭音频输出:- true:开启音频输出 ,
- false:关闭音频输出。
-
Returns 返回状态码 见JRTCErrorCode。
Implementation
static Future<int> enableAudioOutput(String channelId, bool enable) async {
return await JRTCExpressEngineImpl.enableAudioOutput(channelId, enable);
}