form method
The <form> element to associate
the output with (its form owner).
Read more...
Implementation
Output form(String id, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('form', id);
node.attrs!.add(attr);
}
return this;
}