GetIdentityProviderIntentResponse constructor
GetIdentityProviderIntentResponse({
- Details? details,
- IDPInformation? idpInformation,
- String? id,
Implementation
factory GetIdentityProviderIntentResponse({
$2.Details? details,
$6.IDPInformation? idpInformation,
$core.String? id,
}) {
final result = create();
if (details != null) result.details = details;
if (idpInformation != null) result.idpInformation = idpInformation;
if (id != null) result.id = id;
return result;
}