ReauthenticateView constructor

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

A view that could be used to build a custom ReauthenticateDialog.

Implementation

const ReauthenticateView({
  super.key,
  required this.providers,
  this.auth,
  this.onSignedIn,
  this.actionButtonLabelOverride,
  this.showPasswordVisibilityToggle = false,
  this.onPhoneVerfifed,
});