StartIdentityProviderIntentResponse constructor
StartIdentityProviderIntentResponse({
- Details? details,
- String? authUrl,
- IdentityProviderIntent? idpIntent,
- List<
int> ? postForm,
Implementation
factory StartIdentityProviderIntentResponse({
$2.Details? details,
$core.String? authUrl,
$6.IdentityProviderIntent? 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;
}