TextInputWidget constructor

const TextInputWidget({
  1. Key? key,
  2. required String title,
  3. String? hintText,
  4. String? subTitle,
  5. int? maxLength,
  6. int? maxLines,
})

Implementation

const TextInputWidget({
  super.key,
  required this.title,
  this.hintText,
  this.subTitle,
  this.maxLength,
  this.maxLines,
});