getScailoClientForVendorStreamsService function

VendorStreamsServiceClient getScailoClientForVendorStreamsService()

Get the client to access the Vendor Streams service

Implementation

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