CommonTextFieldBottomLineInputAction constructor

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

Implementation

const CommonTextFieldBottomLineInputAction({
  required this.controller,
  required this.hintText,
  this.inputType = TextInputType.text,
  this.inputAction = TextInputAction.next,
  this.maxLength = TextField.noMaxLength,
  this.prefixIcon = "",
  this.suffixIcon = "",
  super.key
});