BottomLineTextFieldForBottomSheet constructor

const BottomLineTextFieldForBottomSheet({
  1. required TextEditingController controller,
  2. required String labelText,
  3. TextInputType inputType = TextInputType.text,
  4. int maxLength = TextField.noMaxLength,
  5. String suffixIcon = "",
  6. bool readOnly = true,
  7. void onChange(
    1. String
    )?,
  8. required void onTap(),
  9. Key? key,
})

Implementation

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