getScailoClientForLabelsService function

LabelsServiceClient getScailoClientForLabelsService()

Get the client to access the Labels service

Implementation

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