Textarea.raw constructor

const Textarea.raw({
  1. String? className,
  2. String? style,
  3. Map<String, String>? attrs,
  4. Map<String, BloomEventHandler>? on,
})

Const constructor for <textarea> without attribute and event shorthands.

Implementation

const Textarea.raw({
  super.className,
  super.style,
  super.attrs,
  super.on,
}) : super('textarea');