getStreamingText method
Stream<SpeechToTextResponse>
getStreamingText({
- required Stream<
List< stream,int> > - SpeechToTextOptions? options,
- CancellationToken? cancellationToken,
override
Transcribes the given audio stream as a stream of
updates.
Implementation
@override
Stream<SpeechToTextResponse> getStreamingText({
required Stream<List<int>> stream,
SpeechToTextOptions? options,
CancellationToken? cancellationToken,
}) =>
innerClient.getStreamingText(
stream: stream,
options: options,
cancellationToken: cancellationToken,
);