getScailoClientForVendorInvoicesService function

VendorInvoicesServiceClient getScailoClientForVendorInvoicesService()

Get the client to access the Vendor Invoices service

Implementation

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