getScailoClientForPurchasesPaymentsService function
Get the client to access the Purchases Payments service
Implementation
PurchasesPaymentsServiceClient getScailoClientForPurchasesPaymentsService() {
return PurchasesPaymentsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}