diff --git a/lib/src/widgets/forgot_password_form.dart b/lib/src/widgets/forgot_password_form.dart index 2cc59f8..634cc52 100644 --- a/lib/src/widgets/forgot_password_form.dart +++ b/lib/src/widgets/forgot_password_form.dart @@ -7,15 +7,15 @@ class ForgotPasswordForm extends StatefulWidget { const ForgotPasswordForm({ super.key, required this.options, - required this.title, required this.description, required this.onRequestForgotPassword, + this.title, this.initialEmail, }); final LoginOptions options; - final Widget title; + final Widget? title; final Widget description; final String? initialEmail;