RetrieveIdentityProviderIntentResponse constructor

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

Implementation

factory RetrieveIdentityProviderIntentResponse({
  $4.Details? details,
  $7.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;
}