PasskeyLoginPublicKey constructor

PasskeyLoginPublicKey({
  1. required String challenge,
  2. int? timeout,
  3. String? rpId,
  4. List<PasskeyLoginAllowCredentialType>? allowCredentials,
  5. UserVerificationRequirement? userVerification,
  6. LoginExtensions? loginExtensions,
})

Creates the public key request options.

Implementation

PasskeyLoginPublicKey({
  required this.challenge,
  this.timeout,
  this.rpId,
  this.allowCredentials,
  this.userVerification,
  this.loginExtensions,
});