AuthWebAuthnRegistrationOptions constructor

const AuthWebAuthnRegistrationOptions({
  1. required String challenge,
  2. required WebAuthnRelyingParty relyingParty,
  3. required String userId,
  4. required String userName,
  5. required String displayName,
  6. required Duration timeout,
  7. required String attestation,
  8. required List<String> excludeCredentials,
  9. required String userVerification,
})

Creates the public options for a registration ceremony.

Implementation

const AuthWebAuthnRegistrationOptions({
  required this.challenge,
  required this.relyingParty,
  required this.userId,
  required this.userName,
  required this.displayName,
  required this.timeout,
  required this.attestation,
  required this.excludeCredentials,
  required this.userVerification,
});