getScailoClientForAssetIndentsService function

AssetIndentsServiceClient getScailoClientForAssetIndentsService()

Get the client to access the Asset Indents service

Implementation

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