completeIsUvpaaRequest method

Future<void> completeIsUvpaaRequest(
  1. IsUvpaaResponseDetails details
)

Reports the result of a PublicKeyCredential.isUserVerifyingPlatformAuthenticator() call. The extension must call this for every onIsUvpaaRequest event it has received.

Implementation

Future<void> completeIsUvpaaRequest(IsUvpaaResponseDetails details) async {
  await promiseToFuture<void>(
      $js.chrome.webAuthenticationProxy.completeIsUvpaaRequest(details.toJS));
}