ReauthenticateDialog constructor

const ReauthenticateDialog({
  1. Key? key,
  2. required List<AuthProvider<AuthListener, AuthCredential>> providers,
  3. FirebaseAuth? auth,
  4. VoidCallback? onSignedIn,
  5. String? actionButtonLabelOverride,
  6. VoidCallback? onPhoneVerfifed,
})

A dialog that prompts the user to re-authenticate their account Used to confirm destructive actions (like account deletion or disabling MFA).

Implementation

const ReauthenticateDialog({
  super.key,
  required this.providers,
  this.auth,
  this.onSignedIn,
  this.actionButtonLabelOverride,
  this.onPhoneVerfifed,
});