getScailoClientForInwardJobsService function

InwardJobsServiceClient getScailoClientForInwardJobsService()

Get the client to access the Inward Jobs service

Implementation

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