getScailoClientForOutwardJobsService function

OutwardJobsServiceClient getScailoClientForOutwardJobsService()

Get the client to access the Outward Jobs service

Implementation

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