EasyPasswordField constructor
const
EasyPasswordField({
- Key? key,
- required TextEditingController controller,
- String hintText = 'Password',
- int minLength = 6,
Creates an EasyPasswordField widget.
controller is required.
hintText defaults to 'Password' and minLength to 6 if not provided.
Implementation
const EasyPasswordField({
super.key,
required this.controller,
this.hintText = 'Password',
this.minLength = 6,
});