getScailoClientForCreditNotesService function
Get the client to access the Credit Notes service
Implementation
CreditNotesServiceClient getScailoClientForCreditNotesService() {
return CreditNotesServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}