AuthenticatorSelectionType constructor

AuthenticatorSelectionType({
  1. String? authenticatorAttachment,
  2. required bool requireResidentKey,
  3. required String residentKey,
  4. required String userVerification,
})

Constructs a new instance.

Implementation

AuthenticatorSelectionType({
  this.authenticatorAttachment,
  required this.requireResidentKey,
  required this.residentKey,
  required this.userVerification,
});