AuthenticateRequestType constructor

const AuthenticateRequestType({
  1. required String relyingPartyId,
  2. required String challenge,
  3. required MediationType mediation,
  4. required bool preferImmediatelyAvailableCredentials,
  5. int? timeout,
  6. String? userVerification,
  7. List<CredentialType>? allowCredentials,
})

Constructs a new instance.

Implementation

const AuthenticateRequestType({
  required this.relyingPartyId,
  required this.challenge,
  required this.mediation,
  required this.preferImmediatelyAvailableCredentials,
  this.timeout,
  this.userVerification,
  this.allowCredentials,
});