AddIDPAuthenticatorRequest constructor
AddIDPAuthenticatorRequest({
- String? userId,
- 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;
}