getScailoClientForQuotationsRequestsService function
Get the client to access the Quotations Requests service
Implementation
QuotationsRequestsServiceClient getScailoClientForQuotationsRequestsService() {
return QuotationsRequestsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}