AuthBreachedPasswordCheckRequest<TContext> constructor
const
AuthBreachedPasswordCheckRequest<TContext> ({
- required TContext context,
- required String password,
- required AuthPasswordPolicyOperation operation,
- AuthUser? user,
Creates a lookup request containing the password secret.
context, operation, and optional user identify the flow. The
password must be used only for the private check and must never be
logged, persisted, returned, or included in errors or diagnostics.
Implementation
const AuthBreachedPasswordCheckRequest({
required this.context,
required this.password,
required this.operation,
this.user,
});