EasyPasswordField constructor

const EasyPasswordField({
  1. Key? key,
  2. required TextEditingController controller,
  3. int minLength = 6,
  4. String label = 'Password',
})

Implementation

const EasyPasswordField({
  super.key,
  required this.controller,
  this.minLength = 6,
  this.label = 'Password',
});