CommonTextFieldForPassword constructor

const CommonTextFieldForPassword({
  1. required TextEditingController controller,
  2. required String hintText,
  3. TextInputType inputType = TextInputType.text,
  4. int maxLength = TextField.noMaxLength,
  5. String prefixIcon = "",
  6. String suffixIcon = "",
  7. Key? key,
})

Implementation

const CommonTextFieldForPassword({
  required this.controller,
  required this.hintText,
  this.inputType = TextInputType.text,
  this.maxLength = TextField.noMaxLength,
  this.prefixIcon = "",
  this.suffixIcon = "",

  super.key
});