getScailoClientForClientsService function

ClientsServiceClient getScailoClientForClientsService()

Get the client to access the Clients service

Implementation

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