attest method

  1. @override
Future<KeyAttestation?> attest(
  1. String nonce
)
override

Optional key attestation bound to nonce. Returns null when the implementation cannot attest, in which case the library simply omits it.

Implementation

@override
Future<KeyAttestation?> attest(String nonce) async => _attestor?.call(nonce);