RetrieveIdentityProviderIntentResponse constructor
RetrieveIdentityProviderIntentResponse({
- Details? details,
- IDPInformation? idpInformation,
- String? userId,
Implementation
factory RetrieveIdentityProviderIntentResponse({
$6.Details? details,
$4.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;
}