AuthenticateRequestType constructor

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

Constructs a new instance.

Implementation

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