ArcaneTextArea constructor

const ArcaneTextArea({
  1. String? placeholder,
  2. int rows = 4,
  3. InputStyle? style,
  4. bool disabled = false,
  5. bool required = false,
  6. bool resizable = true,
  7. String? value,
  8. String? name,
  9. String? id,
  10. String? label,
  11. String? error,
  12. String? helperText,
  13. void onChange(
    1. String
    )?,
  14. bool fullWidth = true,
  15. Key? key,
})

Implementation

const ArcaneTextArea({
  this.placeholder,
  this.rows = 4,
  this.style,
  this.disabled = false,
  this.required = false,
  this.resizable = true,
  this.value,
  this.name,
  this.id,
  this.label,
  this.error,
  this.helperText,
  this.onChange,
  this.fullWidth = true,
  super.key,
});