SetPasswordForm constructor

const SetPasswordForm({
  1. Key? key,
  2. required EmailAuthController controller,
  3. required String title,
  4. required String passwordLabelText,
  5. required String actionButtonLabel,
  6. required VoidCallback onActionPressed,
  7. required Widget bottomText,
})

Creates a SetPasswordForm widget.

Implementation

const SetPasswordForm({
  super.key,
  required this.controller,
  required this.title,
  required this.passwordLabelText,
  required this.actionButtonLabel,
  required this.onActionPressed,
  required this.bottomText,
});