getAuthenticationIntent method

Implementation

Future<Fido2AuthenticationResponse?> getAuthenticationIntent(
    PublicKeyCredentialRequestOptions options) async {
  dynamic res = await _channel.invokeMethod(
    'getAuthenticationIntent',
    options.toMap(),
  );
  return res != null ? Fido2AuthenticationResponse.fromMap(res) : null;
}