KiteTextArea constructor

const KiteTextArea({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? label,
  4. String? hint,
  5. String? helper,
  6. String? errorText,
  7. int minLines = 4,
  8. int maxLines = 8,
  9. int? maxLength,
  10. bool enabled = true,
  11. ValueChanged<String>? onChanged,
})

Implementation

const KiteTextArea({
  super.key,
  this.controller,
  this.label,
  this.hint,
  this.helper,
  this.errorText,
  this.minLines = 4,
  this.maxLines = 8,
  this.maxLength,
  this.enabled = true,
  this.onChanged,
});