stopLiveTranscription method

  1. @override
Future<String> stopLiveTranscription()

Stop live transcription. Users can stop live transcription (if it has already begun) if the session allows multi-language transcription. When live transcription has successfully stopped, the transcription service and its callback will no longer be available.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> stopLiveTranscription() async {
  return await methodChannel
      .invokeMethod<String>('stopLiveTranscription')
      .then<String>((String? value) => value ?? "");
}