AddIDPAuthenticatorRequest constructor

AddIDPAuthenticatorRequest({
  1. String? userId,
  2. IDPAuthenticator? idpAuthenticator,
})

Implementation

factory AddIDPAuthenticatorRequest({
  $core.String? userId,
  $4.IDPAuthenticator? idpAuthenticator,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (idpAuthenticator != null) {
    $result.idpAuthenticator = idpAuthenticator;
  }
  return $result;
}