validateConsentChallenge static method
Implementation
static Future<SoftcorpGrpc.AuthPublicResponse> validateConsentChallenge(
{required String consentChallenge}) async {
checkServices();
await applyTest();
if (consentChallenge == "") {
throw Exception("invalid consent challenge");
}
return connectService!
.validateConsentChallenge(challenge: consentChallenge);
}