RegisterRequestType constructor

const RegisterRequestType({
  1. required String challenge,
  2. required RelyingPartyType relyingParty,
  3. required UserType user,
  4. required AuthenticatorSelectionType authSelectionType,
  5. required List<CredentialType> excludeCredentials,
  6. List<PubKeyCredParamType>? pubKeyCredParams,
  7. int? timeout,
  8. String? attestation,
})

Implementation

const RegisterRequestType({
  required this.challenge,
  required this.relyingParty,
  required this.user,
  required this.authSelectionType,
  required this.excludeCredentials,
  this.pubKeyCredParams,
  this.timeout,
  this.attestation,
});