AuthenticatorSelectionType constructor

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

Constructs a new instance.

Implementation

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