RetrieveIdentityProviderIntentResponse constructor

RetrieveIdentityProviderIntentResponse({
  1. Details? details,
  2. IDPInformation? idpInformation,
  3. String? userId,
})

Implementation

factory RetrieveIdentityProviderIntentResponse({
  $6.Details? details,
  $4.IDPInformation? idpInformation,
  $core.String? userId,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (idpInformation != null) result.idpInformation = idpInformation;
  if (userId != null) result.userId = userId;
  return result;
}