getScailoClientForPurchasesOrdersService function

PurchasesOrdersServiceClient getScailoClientForPurchasesOrdersService()

Get the client to access the Purchases Orders service

Implementation

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