getScailoClientForComponentsService function

ComponentsServiceClient getScailoClientForComponentsService()

Get the client to access the Components service

Implementation

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