PasswordInputComponent constructor

const PasswordInputComponent({
  1. Key? key,
  2. required String label,
  3. required TextEditingController controller,
  4. TextInputAction textInputAction = TextInputAction.done,
  5. dynamic customValidator(
    1. String value
    )?,
})

Implementation

const PasswordInputComponent({
  super.key,
  required this.label,
  required this.controller,
  this.textInputAction = TextInputAction.done,
  this.customValidator,
});