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