VerifyWebAuthNRegistration constructor

VerifyWebAuthNRegistration({
  1. Struct? publicKeyCredential,
  2. String? webAuthNName,
})

Implementation

factory VerifyWebAuthNRegistration({
  $1.Struct? publicKeyCredential,
  $core.String? webAuthNName,
}) {
  final result = create();
  if (publicKeyCredential != null)
    result.publicKeyCredential = publicKeyCredential;
  if (webAuthNName != null) result.webAuthNName = webAuthNName;
  return result;
}