getScailoClientForClientStreamsService function

ClientStreamsServiceClient getScailoClientForClientStreamsService()

Get the client to access the Client Streams service

Implementation

ClientStreamsServiceClient getScailoClientForClientStreamsService() {
  return ClientStreamsServiceClient(
    getClientChannel(),
    options: CallOptions(
      metadata: {'auth_token': getAuthToken()},
      timeout: const Duration(seconds: 10),
    ),
  );
}