VerifyU2FRegistrationRequest constructor

VerifyU2FRegistrationRequest({
  1. String? userId,
  2. String? u2fId,
  3. Struct? publicKeyCredential,
  4. String? tokenName,
})

Implementation

factory VerifyU2FRegistrationRequest({
  $core.String? userId,
  $core.String? u2fId,
  $10.Struct? publicKeyCredential,
  $core.String? tokenName,
}) {
  final result = create();
  if (userId != null) result.userId = userId;
  if (u2fId != null) result.u2fId = u2fId;
  if (publicKeyCredential != null)
    result.publicKeyCredential = publicKeyCredential;
  if (tokenName != null) result.tokenName = tokenName;
  return result;
}