getScailoClientForGeneralStreamsService function
Get the client to access the General Streams service
Implementation
GeneralStreamsServiceClient getScailoClientForGeneralStreamsService() {
return GeneralStreamsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}