RemoveWebAuthNAuthenticatorRequest constructor
Implementation
factory RemoveWebAuthNAuthenticatorRequest({
$core.String? userId,
$core.String? webAuthNId,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (webAuthNId != null) {
$result.webAuthNId = webAuthNId;
}
return $result;
}