RetrieveIdentityProviderIntentResponse constructor
RetrieveIdentityProviderIntentResponse({
- Details? details,
- IDPInformation? idpInformation,
- String? userId,
Implementation
factory RetrieveIdentityProviderIntentResponse({
$4.Details? details,
$7.IDPInformation? idpInformation,
$core.String? userId,
}) {
final $result = create();
if (details != null) {
$result.details = details;
}
if (idpInformation != null) {
$result.idpInformation = idpInformation;
}
if (userId != null) {
$result.userId = userId;
}
return $result;
}