getScailoClientForLeavesLogsService function

LeavesLogsServiceClient getScailoClientForLeavesLogsService()

Get the client to access the Leaves Logs service

Implementation

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