UserIdentityFeatureConfig constructor

UserIdentityFeatureConfig(
  1. String appName,
  2. String? allowedEmailDomains,
  3. String? allowedEmailExample,
  4. bool? mobileNumberRequired,
  5. UserCustomProfileInputConfig? customProfileInput,
)

Implementation

UserIdentityFeatureConfig(
  this.appName,
  this.allowedEmailDomains,
  this.allowedEmailExample,
  bool? mobileNumberRequired,
  this.customProfileInput,
) : mobileNumberRequired = mobileNumberRequired ?? true;