appAttestAttestKey method
Produces an attestation object for the given key.
Implementation
@override
Future<IntegrityResult> appAttestAttestKey({
required String keyId,
required String clientDataHash,
}) async {
final map = await _invokeMap('appAttestAttestKey', {
'keyId': keyId,
'clientDataHash': clientDataHash,
});
return IntegrityResult.fromMap(map);
}