CommonTextFieldForBottomSheetBottomLine constructor

const CommonTextFieldForBottomSheetBottomLine({
  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. bool readOnly = true,
  8. required void onTap(),
  9. Key? key,
})

Implementation

const CommonTextFieldForBottomSheetBottomLine({
  required this.controller,
  required this.hintText,
  this.inputType = TextInputType.text,
  this.maxLength = TextField.noMaxLength,
  this.prefixIcon = "",
  this.suffixIcon = "",
  this.readOnly = true,
  required this.onTap,
  super.key
});