AuthenticatorSelectionType constructor

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

Constructs a new instance.

Implementation

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