AuthenticatorSelectionCriteria constructor
AuthenticatorSelectionCriteria({})
Implementation
factory AuthenticatorSelectionCriteria(
{String? authenticatorAttachment,
String? residentKey,
bool? requireResidentKey,
String? userVerification}) =>
AuthenticatorSelectionCriteria._(
authenticatorAttachment: authenticatorAttachment ?? undefined,
residentKey: residentKey ?? undefined,
requireResidentKey: requireResidentKey ?? false,
userVerification: userVerification ?? 'preferred');