getScailoClientForTaxParamsService function
Get the client to access the Tax Params service
Implementation
TaxParamsServiceClient getScailoClientForTaxParamsService() {
return TaxParamsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}