PasswordAuthConfig constructor

PasswordAuthConfig({
  1. bool enabled = false,
  2. List<String>? identityFields,
})

Implementation

PasswordAuthConfig({
  this.enabled = false,
  List<String>? identityFields,
}) : identityFields = identityFields ?? [];