appAttestAttestKey method

  1. @override
Future<IntegrityResult> appAttestAttestKey({
  1. required String keyId,
  2. required String clientDataHash,
})
override

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);
}