CommonTextFieldBottomLine constructor

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

Implementation

const CommonTextFieldBottomLine({
  required this.controller,
  required this.hintText,
  this.inputType = TextInputType.text,
  this.maxLength = TextField.noMaxLength,
  super.key
});