stopTranscription method
Stops the ongoing real-time transcription for the current room session.
- When real-time transcription is stopped, all participants,
including the local participant, will receive a
Events.transcriptionStateChanged event with the
TRANSCRIPTION_STOPPINGstate.
Events associated with stopTranscription()
- Events.transcriptionStateChanged with state
TRANSCRIPTION_STOPPING
Example
// Stop real-time transcription
await room.stopTranscription();
Implementation
Future<void> stopTranscription() => _stopTranscription();