getScailoClientForStockIssuancesService function

StockIssuancesServiceClient getScailoClientForStockIssuancesService()

Get the client to access the Stock Issuances service

Implementation

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