stream method

Future<STTStreamEvent> stream(
  1. ClientContext? ctx,
  2. STTTranscriptionRequest request
)

Server-streaming transcription events: started, partial hypotheses, terminal final output, endpoint notifications, and errors.

Implementation

$async.Future<STTStreamEvent> stream(
        $pb.ClientContext? ctx, STTTranscriptionRequest request) =>
    _client.invoke<STTStreamEvent>(
        ctx, 'STT', 'Stream', request, STTStreamEvent());