attest static method
Performs attestation on the generated key
Implementation
static Future<String> attest({
required String keyId,
required String challenge,
}) async {
return await _channel.invokeMethod('attest', {
"keyId": keyId,
"challenge": challenge,
});
}