IdentityPool constructor

IdentityPool({
  1. required bool allowUnauthenticatedIdentities,
  2. required String identityPoolId,
  3. required String identityPoolName,
  4. bool? allowClassicFlow,
  5. List<CognitoIdentityProvider>? cognitoIdentityProviders,
  6. String? developerProviderName,
  7. Map<String, String>? identityPoolTags,
  8. List<String>? openIdConnectProviderARNs,
  9. List<String>? samlProviderARNs,
  10. Map<String, String>? supportedLoginProviders,
})

Implementation

IdentityPool({
  required this.allowUnauthenticatedIdentities,
  required this.identityPoolId,
  required this.identityPoolName,
  this.allowClassicFlow,
  this.cognitoIdentityProviders,
  this.developerProviderName,
  this.identityPoolTags,
  this.openIdConnectProviderARNs,
  this.samlProviderARNs,
  this.supportedLoginProviders,
});