authenticate method
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,
);
}