getStreamingText abstract method

Stream<SpeechToTextResponse> getStreamingText({
  1. required Stream<List<int>> stream,
  2. SpeechToTextOptions? options,
  3. CancellationToken? cancellationToken,
})

Transcribes the given audio stream as a stream of updates.

Implementation

Stream<SpeechToTextResponse> getStreamingText({
  required Stream<List<int>> stream,
  SpeechToTextOptions? options,
  CancellationToken? cancellationToken,
});