StartIdentityProviderIntentResponse constructor

StartIdentityProviderIntentResponse({
  1. Details? details,
  2. String? authUrl,
  3. IdentityProviderIntent? idpIntent,
  4. List<int>? postForm,
})

Implementation

factory StartIdentityProviderIntentResponse({
  $2.Details? details,
  $core.String? authUrl,
  $4.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;
}