PamConfig constructor

PamConfig(
  1. String pamServer,
  2. String publicDBAlias,
  3. String loginDBAlias,
  4. String trackingConsentMessageID,
  5. bool enableLog, {
  6. required PamIdentityMatcher identityMatcher,
  7. bool blockEventsIfNoConsent = false,
  8. PamIdentityProvider? identityProvider,
  9. PamIdentityMismatchHandler? onIdentityMismatch,
})

Implementation

PamConfig(
  this.pamServer,
  this.publicDBAlias,
  this.loginDBAlias,
  this.trackingConsentMessageID,
  this.enableLog, {
  required this.identityMatcher,
  this.blockEventsIfNoConsent = false,
  this.identityProvider,
  this.onIdentityMismatch,
});