formEncType method
Specifies how to encode the form data that is submitted. Read more...
Implementation
Button formEncType(String value, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('formenctype', value);
node.attrs!.add(attr);
}
return this;
}