IDPAuthenticator constructor
Implementation
factory IDPAuthenticator({
$core.String? idpId,
$core.String? userId,
$core.String? userName,
}) {
final $result = create();
if (idpId != null) {
$result.idpId = idpId;
}
if (userId != null) {
$result.userId = userId;
}
if (userName != null) {
$result.userName = userName;
}
return $result;
}