NiceTextArea constructor

const NiceTextArea({
  1. Key? key,
  2. String? value,
  3. ValueChanged<String>? onChanged,
  4. String? label,
  5. String? hint,
  6. String? errorText,
  7. bool enabled = true,
  8. bool readOnly = false,
  9. int minLines = 3,
  10. int maxLines = 8,
  11. int? maxLength,
  12. bool showCounter = false,
  13. bool resizable = false,
})

Implementation

const NiceTextArea({
  super.key,
  this.value,
  this.onChanged,
  this.label,
  this.hint,
  this.errorText,
  this.enabled = true,
  this.readOnly = false,
  this.minLines = 3,
  this.maxLines = 8,
  this.maxLength,
  this.showCounter = false,
  this.resizable = false,
});