VerifyWebAuthNRegistrationRequest constructor

VerifyWebAuthNRegistrationRequest({
  1. String? userId,
  2. String? webAuthNId,
  3. Struct? publicKeyCredential,
  4. String? webAuthNName,
})

Implementation

factory VerifyWebAuthNRegistrationRequest({
  $core.String? userId,
  $core.String? webAuthNId,
  $3.Struct? publicKeyCredential,
  $core.String? webAuthNName,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (webAuthNId != null) {
    $result.webAuthNId = webAuthNId;
  }
  if (publicKeyCredential != null) {
    $result.publicKeyCredential = publicKeyCredential;
  }
  if (webAuthNName != null) {
    $result.webAuthNName = webAuthNName;
  }
  return $result;
}