CustomPasswordField constructor

const CustomPasswordField({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String labelText,
  4. required String hintText,
  5. required RxBool showPassword,
  6. bool isDisabled = false,
  7. bool canEdit = true,
})

Implementation

const CustomPasswordField({
  super.key,
  required this.controller,
  required this.labelText,
  required this.hintText,
  required this.showPassword,
  this.isDisabled = false,
  this.canEdit = true,
});