enableReceiveSpokenLanguageContent method
Enable or disable to receive original and translated content.If you enable this feature, you must start live transcription.
enable
true means enable, otherwise false.
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> enableReceiveSpokenLanguageContent(bool enable) async {
var params = <String, dynamic>{};
params.putIfAbsent("enable", () => enable);
return await methodChannel
.invokeMethod<String>('enableReceiveSpokenLanguageContent', params)
.then<String>((String? value) => value ?? "");
}