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