stream method

Future<VoiceEvent> stream(
  1. ClientContext? ctx,
  2. VoiceAgentRequest request
)

Server-streaming: the agent emits VoiceEvents until the client cancels the stream or the agent reaches its terminal state.

Implementation

$async.Future<$0.VoiceEvent> stream(
        $pb.ClientContext? ctx, VoiceAgentRequest request) =>
    _client.invoke<$0.VoiceEvent>(
        ctx, 'VoiceAgent', 'Stream', request, $0.VoiceEvent());