form method

TextArea form(
  1. String id, {
  2. bool? removeIf,
})

The form element that the <textarea> element is associated with (its "form owner"). Read more...

Implementation

TextArea form(String id, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('form', id);
    node.attrs!.add(attr);
  }
  return this;
}