StartIdentityProviderIntentResponse constructor
StartIdentityProviderIntentResponse({})
Implementation
factory StartIdentityProviderIntentResponse({
$4.Details? details,
$core.String? authUrl,
$7.IDPIntent? idpIntent,
$core.List<$core.int>? postForm,
}) {
final $result = create();
if (details != null) {
$result.details = details;
}
if (authUrl != null) {
$result.authUrl = authUrl;
}
if (idpIntent != null) {
$result.idpIntent = idpIntent;
}
if (postForm != null) {
$result.postForm = postForm;
}
return $result;
}