HareTextArea constructor

HareTextArea({
  1. String value = "",
  2. String? label,
  3. Icon? icon,
  4. TextStyle? style,
  5. bool readOnly = false,
  6. String? counterText,
  7. TextInputFormatter? inputFormater,
  8. int? minLines,
  9. int? maxLines = 6,
  10. void onChanged(
    1. String
    )?,
  11. void onSubmit(
    1. String
    )?,
  12. int? maxLength,
})

Implementation

HareTextArea({
  String value = "",
  this.label,
  this.icon,
  this.style,
  this.readOnly = false,
  this.counterText,
  this.inputFormater,
  this.minLines,
  this.maxLines = 6,
  this.onChanged,
  this.onSubmit,
  this.maxLength,
}) : controller = TextEditingController(text: value),
     super();