InputTextField constructor

const InputTextField({
  1. required String hintText,
  2. required dynamic textInputType,
  3. dynamic textInputAction = TextInputAction.next,
  4. dynamic controller,
  5. int? maxLines,
  6. String? validator(
    1. String?
    )?,
  7. bool? readOnly,
  8. void onInputChanged(
    1. String?
    )?,
  9. dynamic key,
})

Implementation

const InputTextField({
  required this.hintText,
  required this.textInputType,
  this.textInputAction = TextInputAction.next,
  this.controller,
  this.maxLines,
  this.validator,
  this.readOnly,
  this.onInputChanged,
  super.key,
});