AuthenticatorSelectionCriteria.fromJson constructor
AuthenticatorSelectionCriteria.fromJson(
- dynamic json
Implementation
factory AuthenticatorSelectionCriteria.fromJson(dynamic json) {
return AuthenticatorSelectionCriteria(
json['authenticatorAttachment'] as String?,
json['residentKey'] as String,
json['requireResidentKey'] as bool,
json['userVerification'] as String,
);
}