TextArea constructor

TextArea([
  1. String? value
])

The <textarea> HTML element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form. Read more...

Implementation

TextArea([super.value]) {
  tag = 'textarea';
}