GetIdentityProviderIntentResponse constructor

GetIdentityProviderIntentResponse({
  1. Details? details,
  2. IDPInformation? idpInformation,
  3. 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;
}