authenticate method

Future<AuthenticateResponseType> authenticate(
  1. String relyingPartyId,
  2. String challenge,
  3. int? timeout,
  4. String? userVerification,
  5. List<AllowCredentialType>? allowCredentials,
)

Returns a solution to the challenge from relyingParty

Implementation

Future<AuthenticateResponseType> authenticate(
  String relyingPartyId,
  String challenge,
  int? timeout,
  String? userVerification,
  List<AllowCredentialType>? allowCredentials,
) {
  return _platform.authenticate(
    relyingPartyId,
    challenge,
    timeout,
    userVerification,
    allowCredentials,
  );
}