stopTranscription method

Future<void> stopTranscription()

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_STOPPING state.

Events associated with stopTranscription()

Example

// Stop real-time transcription
await room.stopTranscription();

Implementation

Future<void> stopTranscription() => _stopTranscription();