ChangePasswordConfig constructor
const
ChangePasswordConfig({ - required bool enablePasswordChange,
- String title = 'Change password',
- TextStyle? titleStyle,
- String underTitle = 'You van make the password more secure using upper and lower case ' 'letter, numbers and special characters.',
- TextStyle? underTitleStyle,
- Widget saveButtonBuilder(
- BuildContext context,
- void onTap()
)?,
- String fieldRequiredErrorText = 'Field required',
- String notEqualErrorText = 'Password have to be equal',
})
Implementation
const ChangePasswordConfig({
required this.enablePasswordChange,
this.title = 'Change password',
this.titleStyle,
this.underTitle =
'You van make the password more secure using upper and lower case '
'letter, numbers and special characters.',
this.underTitleStyle,
this.saveButtonBuilder,
this.fieldRequiredErrorText = 'Field required',
this.notEqualErrorText = 'Password have to be equal',
});