AuthBreachedPasswordCheckRequest<TContext> constructor

const AuthBreachedPasswordCheckRequest<TContext>({
  1. required TContext context,
  2. required String password,
  3. required AuthPasswordPolicyOperation operation,
  4. 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,
});